在命令行中我能够做到
cp htlog.out test.$(date '+%m%d%Y')
但是当我尝试像这样 crontab 时:
37 17 * * 1-5 cd the/dir && cp htlog.out test.$(date "+%m%d%Y")
它失败并来自 CRON DAEMON 的以下消息:
/bin/sh: -c: line 0: unexpected EOF while looking for matching `"'
/bin/sh: -c: line 1: syntax error: unexpected end of file
而且我在命令之后确实有结束线。该 crontab 条目有什么问题?