with open('comments.txt', 'r') as f:
for line in f.readlines():
line = line.strip()
res_list.append(json.loads(line))
代码入如上 问题: shell 里执行上面脚本能够读取整个文件内容,但是在 cronab 里面只能读取最后两行。问题比较诡异。
1
kimchan 2017-06-21 15:43:55 +08:00
确定 shell 和 crontab 读到的是同一个文件吗? 有没有用绝对路径试试.
|
2
scriptB0y 2017-06-21 15:45:53 +08:00
楼上说的对,写在 cron 里的都要写绝对路径(包括 python 的路径),另外发帖之前先预览一下,代码格式化没写好
|