⌘K
Examples (8)
Edit the crontab file for the current user
crontab -eEdit the crontab file for a specific user
sudo crontab -e -u userReplace the current crontab with the contents of the given file
crontab path/to/fileView a list of existing cron jobs for current user
crontab -lRemove all cron jobs for the current user
crontab -rSample cron job which runs at 10:00 every day (* means any value)
0 10 * * * command_to_executeSample cron job which runs a command every 10 minutes
*/10 * * * * command_to_executeSample cron job which runs a certain script at 02:30 every Friday
30 2 * * Fri /path/to/script.shmade by @shridhargupta | data from tldr-pages