01-22-2018, 04:29 PM
(01-22-2018, 03:47 PM)perryoo11 Wrote: set a cron job.crontab -e
minute | hour | day-of-month | month | day-of-week | command
30 17 * * 1 /path/to/command
so command will be like:
crontab -e
So to run a command every monday at 5:30 in afternoon:
30 17 * * 1 /path/to/command
or every 16 hours
* */16 * * * /path/to/command
done
Should I just add this command to the bat file last? Will my problem be solved?