作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在无人值守的 Ubuntu 工作站上创建了一个每日 cron 作业:
0 3 * * * cd /home/spertus/src-mirror/blockly; svn up; git add -A; git commit -m "Automatic commit `date`"; git push
/bin/sh: line 0: cd: /home/spertus/src-mirror/blockly: Not a directory
Skipped '.'
最佳答案
最可能的解释是您的主目录是自动挂载的,这意味着 /home/spertus
如果您最近没有访问它,它将不存在。
正如您在评论中所说,您应该将目录移动到其他地方或找出如何强制安装它。
有可能在执行命令之前访问您的主目录:
ls /home/spertus >/dev/null 2>&1; cd /home/spertus/src-mirror/blockly; ...
关于ubuntu - 为什么我的 cron 作业有时会在 cd 上以 "not a directory"失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20080566/
我是一名优秀的程序员,十分优秀!