ubuntu上使用cron执行定时任务计划

前端之家收集整理的这篇文章主要介绍了ubuntu上使用cron执行定时任务计划前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

猜你在找的Ubuntu相关文章