#!/usr/bin/python
我在第一行有一个 python 脚本。我可以从 CLI 运行它python myScp.py.
但作为 cron 脚本的一部分。python 脚本无法运行。cron 已经过测试,运行 python 脚本并可以写入 /tmp/crontest.txt
好像是目录问题。我测试了os.getcwd().
它是正确的......只是当cron运行脚本时它会抛出一个错误。从 CLI 运行:/usr/bin/python myScp.py
抛出相同的错误。
Traceback (most recent call last):
File "/myScp.py", line 31, in <module>
execfile(dn2 + 'anotherScpt.py')
IOError: [Errno 2] No such file or directory: './anotherScpt.py'