Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
/bin/sh: /Users/alex/filename.py: No such file or directory
我设置了一个 cronjob,它在正确的时间运行,但脚本没有被执行。当我检查邮件时,我得到了那个错误。脚本和 cronjob 文件都在:
/Users/alex
我的 cronjob 文件如下所示:
45 19 * * * /Users/alex/filename.py
我知道该脚本有效,因为我可以从终端手动启动它。
我在哪里搞砸了?
试试这个:
45 19 * * * /path/to/python /Users/alex/filename.py
path/to/python类似的东西在哪里/usr/bin/python(相信OS XI上的默认值)。
path/to/python
/usr/bin/python
你确定Users吗users?你filename.py有 cron 的执行权限吗?
Users
users
filename.py