Ubuntu系统使用crontab定时执行python脚本
crontab -e配置完成后,如何把保存并退出?
1.Ctrl+O 写入
2.出现“FIile name to Write...”,输入Enter
3.Ctrl+x 保存输出
提示“crontab:installing new crontab”表示成功。
(root权限下)
crontab启动:/etc/init.d/cron start ( service cron start )
crontab重启: /etc/init.d/cron restart (service cron restart )
crontab关闭: /etc/init.d/cron stop ( service cron stop )
在终端中,可以利用 ps -aux|grep cron查询crontab状态,默认情况下,是自启动的。
原文地址:http://blog.51cto.com/11959825/2126303
时间: 2024-11-01 18:51:25