赞
踩
ubuntu 定时执行任务需要进行如下操作:
# 使用 crontab 添加定时任务
# (1) 打开定时任务
crontab -e
# (2) 添加定时任务,这里每天凌晨0点执行一次。
00 00 * * * /bin/sh xxxxxx/cut_nginx_log.sh
# 每周一凌晨, 0点30分执行一次
30 00 * * 1 python pythonScript.py
# (3) 查看定时任务
crontab -l
注意:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。