2901 shaares
124 private links
124 private links
2 results
tagged
crontab
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