我想每10分钟执行一次我的python文件。我正在使用ubuntu实例。此语句一直有效,直到文件的行为止。我无法弄清楚这个问题。我已经测试了这个/ usr / bin / python
以及python3
和python3.6
以及
*/10 * * * * /usr/bin/python /home/ubuntu/Deploy/sam.py >> /home/ubuntu/test.log
文件访问不起作用。如何授予文件访问权限?
Sam.朋友
print('HI')
with open("EsText.txt", "a") as myfile:
myfile.write("kugan")
myfile.close()
你的cron表达应该是0 0/10 * 1/1 * ? *
你可以从this获得帮助
也尝试使用>
而不是>>