linux - How to disable everything in crontab -l? - Server Fault
https://serverfault.com/questions/94351/how-to-disable-everything-in-crontab-lFirst, 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
Details
- Revised
- Created
- Edited