Sam Hames

Now with RSS!

linux - How to disable everything in crontab -l? - Server Fault

https://serverfault.com/questions/94351/how-to-disable-everything-in-crontab-l

First, back up the crontab:

crontab -l > my_cron_backup.txt

Then you can empty it:

crontab -r

To restore:

crontab my_cron_backup.txt crontab -l

Tags

Related By Tags

Details

Revised
Created
Edited