在使用crontab执行带创建日期的文件时发现命令执行不成功 使用命令
* * * * * /bin/ping -f -c 1000 nls-gateway.cn-shanghai.aliyuncs.com >> /tmp/`/bin/date +"%F-%H-%M"`.txt
使用上面命令并未在/tmp目录下得到自己想要的内容,查看crontab日志发现
tail -f /var/log/cron
Nov 8 11:06:01 84 crond[7255]: (root) RELOAD (/var/spool/cron/root)
Nov 8 11:06:01 84 CROND[18159]: (root) CMD (/bin/ping -f -c 1000 nls-gateway.cn-shanghai.aliyuncs.com >> /tmp/`/bin/date +')
Nov 8 11:06:01 84 CROND[18158]: (root) MAIL (mailed 125 bytes of output but got status 0x004b#012)
正确写法: 从日志中看到并未解析到date后面的参数,所以改成如下
* * * * * /bin/ping -f -c 1000 nls-gateway.cn-shanghai.aliyuncs.com >> /tmp/`/bin/date +"\%F-\%H-\%M"`.txt
然后查看日志
tail -f /var/log/cron
Nov 8 11:07:01 84 crond[7255]: (root) RELOAD (/var/spool/cron/root)
Nov 8 11:07:01 84 CROND[18472]: (root) CMD (/bin/ping -f -c 1000 nls-gateway.cn-shanghai.aliyuncs.com >> /tmp/`/bin/date +%F-%H-%M`.txt)
然后再/tmp 下得到自己想要的文件