crontab -r
是一个很危险的命令,它将直接重置 crontab 中的内容;输入 crontab
后,使用 ctrl + d
退出也将清空 crontab 中的内容。所以 crontab 内容的定时备份也变得有必要了。
备份脚本
crontab_bak.sh
|
config in crontab
12 12 * * * /bin/bash /home/tom/crontab_bak/crontab_bak.sh |
crontab 常用命令
crontab -l # 列举 crontab 的任务 |
– EOF –