Cron

From miki
Revision as of 18:20, 28 May 2017 by Mip (talk | contribs) (Created page with "== Tips == === Run a cron job with random delay === From [https://stackoverflow.com/questions/9049460/cron-jobs-and-random-times-within-given-hours SO]: <source lang=text> 0 1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Tips

Run a cron job with random delay

From SO:

0 1 * * * perl -le 'sleep rand 9000' && *command goes here*