Wimmmmm

RSS | Random | Archive

About Me

Hi, I'm Wim Janin. Drupal addict, Apple lover, always looking for cool stuff on the web. Next to that, I like to dance, work in the garden & feel nature.

Theme by: Miguel
  1. "

    */5 * * * * /home/adam/script.sh will execute script.sh every 5 minutes. This will set crontab every 5 minutes.

    59 23 * * 1-5 /home/adam/script.sh will execute script.sh every day, monday through friday, at 11:59 p.m.

    0 0 * * 0 /home/adam/script.sh will execute script.sh once a week.

    You could also specify @weekly instead of 0 0 * * 0. 0 23 1 * * /home/adam/script.sh will execute script.sh once a month, on the first, at 11:00 PM. You could also specify @monthly in place of 0 23 1 * *.

    "