/ Published in: Bash
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# Disable all cron jobs EDITOR='perl -pi -e s/^/#off#/' crontab -e; crontab -l # Enable all cron jobs EDITOR='perl -pi -e s/^#off#//' crontab -e; crontab -l