crontab command

0001-01-01

The crontab command is a command line interface to cron.

crontab -l ### lists the current user’s crontab crontab -r ### removes a crontab crontab -e ### edits the crontab

The -u flag can be used with the above to specify a user:

crontab -u foo -l ### lists’s the foo user’s crontab