#!/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'