crontab环境变量
在这方面有点挣扎...
我正在使用 crontab 进行大量待办事项列表管理:
这是我的 crontab 的片段...
$TASK=/home/pgrads/joseph/emailAnalysis/single
0,30 * * * * ~/emailAnalysis/python/script.py
15,45 * * * * $TASK/task.sh "foo"
10,40 * * * * /home/pgrads/joseph/emailAnalysis/single/task.sh "bar"
我的问题是“foo”任务没有触发 - 我收到错误“/bin” /sh: /task.sh: 没有这样的文件或目录”。
一些谷歌并没有让我走得太远 - 主要是他们只是给我手册页上的变化......:有什么想法吗?
Struggling a bit on this...
I'm using crontab for a lot of todo list management:
Here's a snippet of my crontab...
$TASK=/home/pgrads/joseph/emailAnalysis/single
0,30 * * * * ~/emailAnalysis/python/script.py
15,45 * * * * $TASK/task.sh "foo"
10,40 * * * * /home/pgrads/joseph/emailAnalysis/single/task.sh "bar"
My problem is that the 'foo' task is not triggering - I get the error "/bin/sh: /task.sh: No such file or directory".
A few googles haven't got me very far - mainly they just give me variations on the man page... :s any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从第一行中删除
$
:Remove the
$
from your first line: