code_junkie

How to delegate within a crontab to use another file as a crontab aka Crontab in SVN/CVS

Nov 14th, 2011
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. 0 1 * * * root /bin/sh /do/something.sh
  2.  
  3. */5 * * * * /usr/local/apache/crontab.pl 5 > /var/log/crontab.log 2>&1 # 5 minute interval
  4. 1 * * * * /usr/local/apache/crontab.pl 60 > /var/log/crontab.log 2>&1 # 1 hour interval
  5. 1 1 * * * /usr/local/apache/crontab.pl 3600 > /var/log/crontab.log 2>&1 # 1 day interval
Add Comment
Please, Sign In to add comment