cron schedule 7 am every weekday code example
Example 1: crontab only working days
# crontab on raspberry
# “At 03:01 on every day-of-week from Monday through Friday.”
1 3 * * 1-5
Example 2: cronjob example
//Specify cron frequency
//e.g. run minute 0, every hour
0 */1 * * *
//enter a bash command to the script input field
//e.g. a wget command where the output isn't saved
wget -O- url_here >> /dev/null