【python linux下定时任务跑】crontab -e使用

时间:2021-09-15 22:15:37

1、shell 下 执行 python程序

#!/bin/sh 
python /home/laidefa/msg_json/code/request_msg_json.py

python /home/laidefa/msg_json/code/ftp_uploadfile.py

2、crontab -e 下执行定时任务跑python脚本

每天八天半执行
每天八点四十执行

# 30 8 * * * usr/local/bin/python /home/laidefa/msg_json/code/request_msg_json.py >>/home/laidefa/msg_json/log/myjob1.txt 


# 40 8 * * * usr/local/bin/python /home/laidefa/msg_json/code/ftp_uploadfile.py >>/home/laidefa/msg_json/log/myjob2.txt 

3、特别注意:python的执行命令 必须用绝对路径

这里使用的是usr/local/bin/python

如何查看python执行的绝对路径?

which python
$ which python
/usr/local/bin/python