Answers for "how to handle cron jobs windows"

3

create cron job from command line

#write out current crontab
crontab -l > mycron
#echo new cron into cron file
echo "00 09 * * 1-5 echo hello" >> mycron
#install new cron file
crontab mycron
rm mycron
Posted by: Guest on January-28-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 "Shell/Bash"

Browse Popular Code Answers by Language