Answers for "how to use cron"

C
1

create cron task

sudo crontab -e
Posted by: Guest on March-19-2021
0

cron examples

0 * * * *			every hour
*/15 * * * *		every 15 mins
0 */2 * * *			every 2 hours
0 18 * * 0-6		every week Mon-Sat at 6pm
10 2 * * 6,7		every Sat and Sun on 2:10am
0 0 * * 0			every Sunday midnight
@reboot				every reboot
Posted by: Guest on November-18-2021
0

run crontab locally in windows

reference site that will help: 
https://stackoverflow.com/questions/24035090/run-cron-job-on-php-script-on-localhost-in-windows
Posted by: Guest on December-11-2020

Code answers related to "C"

Browse Popular Code Answers by Language