5/03/2014

crond edit

Format: minute hour day month weekday /path/to/script

Cron table takes time value as time point not interval.

Use * to ignore value.
# Run script at 4:03
3 4 * * * script

Use / to  specify interval
# run script every 14 minute
*/14 * * * * script

No comments:

Post a Comment