我想将cron输出记录到日期文件 - /tmp/log/cron-2014-12-17.log
$ mkdir /tmp/log
$ chmod 777 /tmp/log
$ ls -lah /tmp/log
drwxrwxrwx 2 root root 4.0K Dec 17 21:51 .
Cron(通过root
用户)
* * * * * /usr/bin/php /path/to/script.php > /tmp/log/cron-$(date "+%F").log 2>&1
每分钟后 /tmp/log
仍然是空的。
如果我从命令行手动运行脚本,则会创建一个日志文件,并按预期输出。
// Running it manually as a CLI works fine, but not as a cron
$ /usr/bin/php /path/to/script.php > /tmp/log/cron-$(date "+%F").log 2>&1
另外,如果我创建了一个文件chmod 777,那么cron 将写入输出到这个创建的文件。它只是不会动态创建一个。
// Let's create it first
$ touch /tmp/log/cron.log
$ chmod 777 /tmp/log/cron.log
// wait for the next minute...
$ tail -f /tmp/log/cron.log
output... output... output...
但这对于/tmp/log/cron-2014-12-17.log
等动态名称不起作用。
我错过了什么?
答案 0 :(得分:3)
这将解决您的问题:
0 0 * * * /some/path/to/a/file.php >> /tmp/log/cron-`date +\%F`.log 2>&1