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.
所以我创建了一个如下所示的 cronjob:
*/1 * * * * echo 'hello world' 2>&1 >> ~/logs/test.log
但是当我检查时,~/logs/test.log我没有看到任何记录。我究竟做错了什么?我在互联网上找到的每个资源都显示了类似的解决方案,包括这个
~/logs/test.log
cron 作业由系统执行,因此 ~/ 快捷方式可能未定义或指向 /root/。