停止服务:[root@centos6 /]# /etc/init.d/cron空格stop
启动服务:[root@centos6 /]# /etc/init.d/cron空格start
新建 mycron
* * * * * python3 /root/time.py (每分钟执行一次)
45 16 * * * python3 /root/open_lottery.py (16点45执行一次)
* * * * * python3 /root/my_cron_script/change_cut_state.py
定时执行python脚本
使文件起作用:
crontab mycron
网友评论