Linux Terminal Glossary
›
Cron & Scheduling
Cron & Scheduling
27 commands
crontab -e
crontab -l
crontab -r
crontab -u alice -e
crontab -u alice -l
* * * * * command
0 * * * * command
0 2 * * * command
0 2 * * 0 command
0 2 1 * * command
@reboot command
@daily command
@weekly command
*/5 * * * * command
0 9-17 * * 1-5 command
at 14:30
at now + 1 hour
at midnight
atrm 5
ls /etc/cron.d/
cat /etc/crontab
ls /etc/cron.daily/
ls /etc/cron.hourly/
run-parts /etc/cron.daily
anacron -f -n
cat /var/log/syslog | grep CRON
flock -n /tmp/job.lock -c 'command'
Search all 7,657 commands
instead.