我在 contab 中添加了以下行
1 * * * * /usr/bin/python /home/prkumar/Desktop/python/sample.py
我的sample.py文件
text_file = open("sample.log", "a")
text_file.write("Hi...")
text_file.write("\n")
text_file.close()
如果我在终端中运行 python 程序,它工作正常,并且还将文本附加到 sample.log 文件中。但是在crontab中添加程序没有反应。
谢谢