Cron Cheat Sheet
crontab -l # View current crontab
crontab -l > my-crontab-backup.txt # Backup to file
crontab -r # Delete crontab
crontab my-crontab-backup.txt # Restore from file
crontab -e # Edit crontab
# Every minute
* * * * * some-command.sh
* * * * * some-command.sh 2>&1