在我的crontab里我有这个

* * * * * /users/abcd/runme.sh >> /mnt/ansible/logs/runme.log

可以用这样的东西把日期附加到文件中吗?我试过几种不同的变体,但都不走运。
* * * * * /users/abcd/runme.sh >> /mnt/ansible/logs/runme_`date +%F`.log

最佳答案

试试这个。
总是有效的。* * * * * /users/abcd/runme.sh >> /mnt/ansible/logs/runme_$(date +%Y%m%d%H%M).log
那就行了。

关于linux - Crontab作业输出到文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58632627/

10-13 05:32