1.写一个任务文件 crontest.cron
内容:
*/1 * * * * echo "xgmtest" >>/home/l/shell/log
2.把执行任务加入到crontab中
crontab crontest.cron
3.重新启动cron
sudo /etc/init.d/cron restart
4.每分钟都有任务写入/home/l/shell/log中
cat /home/l/shell/log
5.删除定时任务
crontab -r
原文链接:https://www.f2er.com/ubuntu/350997.html