crontab 动态添加任务
解释版shell
crontab <<-EOF
`crontab -l` # 保留旧的
0 * * * * bash /home/admin/cron/del_log.sh # 新增的命令脚本, 脚本提前写好
EOF
实际脚本
crontab <<-EOF
`crontab -l`
0 * * * * bash /home/admin/cron/del_log.sh
EOF
crontab <<-EOF
`crontab -l` # 保留旧的
0 * * * * bash /home/admin/cron/del_log.sh # 新增的命令脚本, 脚本提前写好
EOF
crontab <<-EOF
`crontab -l`
0 * * * * bash /home/admin/cron/del_log.sh
EOF