使用 cron 从目录运行脚本

使用 cron 从目录运行脚本

我的 crontab 中有这个:

59 23 * * * /home/peter/Documents/script.py > /home/peter/Documents/log.log 2>&1

但我一直进入/bin/sh: 1: /home/peter/Documents/script.py: not foundlog.log 文件。我甚至尝试在脚本的 /home 之前添加 cd,但仍然不起作用。我还需要做什么?

ls -la 输出:-rwxrwxr-- 1 peter peter 603 Jul 18 16:08 /home/peter/Documents/script.py

答案1

好的,评论够多了;)

编辑你的脚本并添加正确的内容:

#!/usr/bin/env python3

相关内容