How can I set cron to run certain commands every one and a half hours?

前端 未结 9 1378
走了就别回头了
走了就别回头了 2020-11-27 18:42

How can I set cron to run certain commands every one and a half hours?

9条回答
  •  情歌与酒
    2020-11-27 18:57

    added the following to my crontab and is working

    15 */1   * * *   root    /usr/bin/some_script.sh >> /tmp/something.log
    

提交回复
热议问题