如何在Ubuntu 14.04中每1小时运行一次cron-job?

时间:2016-06-13 06:41:13

标签: cron ubuntu-14.04 crontab cron-task

我想每1小时运行一次cron。

我尝试了什么:

  1. 0 * / 1 * * * /home/username/test.sh

  2. 0 * * * * /home/username/test.sh

  3. 但是,我不确定,哪一个是对的? 你能帮我决定吗?我应该使用哪一个?

2 个答案:

答案 0 :(得分:-1)

这是每1小时在ubuntu上设置cronjob的方法 0 * * * *或者您可以将它放在cron.hourly目录中 有关详细信息,请参阅链接:
https://askubuntu.com/questions/2368/how-do-i-set-up-a-cron-job

答案 1 :(得分:-2)

    # Use the hash sign to prefix a comment
    # +---------------- minute (0 - 59)
    # |  +------------- hour (0 - 23)
    # |  |  +---------- day of month (1 - 31)
    # |  |  |  +------- month (1 - 12)
    # |  |  |  |  +---- day of week (0 - 7) (Sunday=0 or 7)
    # |  |  |  |  |
    # *  *  *  *  *  command to be executed
    #--------------------------------------------------------------------------
    * */1 * * *  root /bin/sh /home/username/test.sh