I have several CRONs in a raspberry pi and I've noticed that they run more than once, especially one that should run every 5 minutes but do it 3 times, I had the user write that I executed that file with a Random name so that the evidence is not deleted and is executed by PI, ROOT and www-data.
How can I prevent it from being executed so many times?
down I have the CRON
0 22 * * * rm /var/www/html/session/ses* >/dev/null 2>&1 # JOB_ID_6
*/10 * * * * /usr/bin/php /var/www/html/reparaMarcas.php >/dev/null 2>&1 # JOB_$
*/5 * * * * /opt/vc/bin/vcgencmd measure_temp > /var/www/html/temperatura.txt >$
*/30 * * * * /usr/bin/php /var/www/html/hotreboot.php >/dev/null 2>&1 # JOB_ID_$
0 22 * * * /usr/bin/php /var/www/html/ADM_AUTOMAIL.php >/dev/null 2>&1 # JOB_ID$
0 21 * * * sudo reboot >/dev/null 2>&1 # JOB_ID_13
0 5 * * * php /var/www/html/ADM_UPDATE.php >/dev/null 2>&1 # JOB_ID_15
*/5 * * * * php /var/www/html/checkStatus.php >/dev/null 2>&1 # JOB_ID_14