About 1,890,000 results
Open links in new tab
  1. linux - Crontab Day of the Week syntax - Stack Overflow

    Sep 20, 2013 · In crontab does the Day of the Week field run from 0 - 6 or 1 -7? I am seeing conflicting information on this. wikipedia states 0-6 and other sites I have seen are 1-7. Also …

  2. How to create a cron job using Bash automatically without the ...

    May 18, 2009 · Does crontab have an argument for creating cron jobs without using the editor (crontab -e)? If so, what would be the code to create a cron job from a Bash script?

  3. How to run crontab job every week on Sunday - Stack Overflow

    May 23, 2013 · I'm trying to figure out how to run a crontab job every week on Sunday. I think the following should work, but I'm not sure if I understand correctly. Is the following correct? 5 8 * * 6

  4. How would I get a cron job to run every 30 minutes?

    I'm looking to add a crontab entry to execute a script every 30 minutes, on the hour and 30 minutes past the hour or something close. I have the following, but it doesn't seem to run on 0.

  5. ubuntu - How to run cron job every 2 hours? - Stack Overflow

    Jun 21, 2011 · How can I write a Crontab that will run my /home/username/test.sh script every 2 hours?

  6. logging - How to log cron jobs? - Stack Overflow

    Jan 27, 2011 · If you want to verify if a crontab is running and not have to search for it in cron.log or syslog, create a crontab that redirects output to a log file of your choice - something like:

  7. Running a cron job 3 times (1 pm, 2 pm and 3 pm for example)?

    Nov 27, 2012 · I am not sure how to run a cron job at 3 specific hours every day. I want to run it at 1pm, 2 pm and 3pm. Is it possible, using a single expression?

  8. Running a simple shell script as a cronjob - Stack Overflow

    Nov 3, 2013 · I would add that you specify your shell as /bin/sh in the crontab (which is the default) however your script wants a bash shell (different to sh). Check to see if running your …

  9. algorithm - Calculate Cron Next Run Time in C# - Stack Overflow

    ^ ^ 0, 1 ^ ^ means exucution every minute, every hour, at sunday and mondey, every day<br> 35 15 ^ ^ ^ execution every day at 15.35<br> The problem is how to calculate next run time, if you …

  10. bash - How to run cron once, daily at 10pm - Stack Overflow

    Remember to check the system's date, it happened to me to set crontab to start a job at 22, but it actually started at 23 because the system was UTC (so 22 for the system was 23 for me in GMT).