setup cron tab to specific time of during weekdays

前端 未结 3 1961
无人共我
无人共我 2020-12-13 22:59

I am trying to setup a cron job on a Ubuntu server. We want the cron job to run the script at certain times of the day and on some specific days of the week. For example, we

3条回答
  •  抹茶落季
    2020-12-13 23:26

    You state 2pm in your requirement, hour range should end at 14 instead of 18 (which is 6pm).

    */2 9-14 * * 1-5 /path_to_script
    

    man crontab

    http://unixhelp.ed.ac.uk/CGI/man-cgi?crontab+5

提交回复
热议问题