我必须在 crontab 中执行这样的命令:
*/1 * * * * find /etc -type f \( ! -perm /o=w \) -exec sh -c "/bin/ls -hastl '{}' | tr '\n' ' '" \; -exec sh -c "/usr/bin/md5sum '{}' | cut -d ' ' -f 1 " \; > /tmp/crontable/daily/log/$(hostname)_$(date +"%F").log
但它什么也没做,cron 不执行此命令,但在普通 shell 中它运行良好,我在 cron 中做错了什么?其他 cron 任务运行良好。