首页 > 其他 > 详细

crontab 里 % 引发的问题

时间:2014-07-25 14:02:15      阅读:503      评论:0      收藏:0      [点我收藏+]

写个 crontab ,命令是类似这样的

/path/to/script `date +%Y-%m-%d`

直接运行很正常,但是在 crotnab 里就出错。

/bin/sh: -c: line 1: unexpected EOF while looking for matching ``‘
/bin/sh: -c: line 2: syntax error: unexpected end of file

google 了好一阵才找到答案。原来 crontab 里的 % 是有特殊意义的,在这里需要转义。man 5 crontab 可以看到,

Percent-signs (%) in the command, unless escaped with backslash (\), will be changed into newline characters, and all data after the first % will be sent to the command as standard input.

% 如果没有用 \ 转义,就会被替换成换行。所以之前的 crontab 就出错了。

解决办法:可以在 % 前面都加个 \ ,对于这个例子,写成 date +\%Y-\%m-\%d。

crontab 里 % 引发的问题,布布扣,bubuko.com

crontab 里 % 引发的问题

原文:http://www.cnblogs.com/briller/p/3867677.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!