- crontab -l - list all the crontab on standard output
- crontab -e - edit the current crontab using the editor specified by the VISUAL or EDITOR environment variables
- crontab -r - remove the current crontab
- crontab -u - specify the user
- example: $ crontab -u username -l - this command will list the crontab belongs to the username
* * * * * command to be run
1st * is for minutes (0-59)
2nd * is for hour (0-23)
3rd * is for day of month (1-31)
4th * is for month of year (1-12)
5th * is for day of the week (0-7) where 0=Sunday and 7=Sunday
Example:
To backup your pc using rsnapshot everyday at 7.30 a.m.;
- $ crontab -e
- 30 7 * * * /usr/local/bin/rsnapshot daily
- save your crontab setting
No comments:
Post a Comment