码迷,mamicode.com
首页 > 其他好文 > 详细

crontab 里 % 引发的问题

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

标签:for   c   问题   ar   line   new   file   har   

写个 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 里 % 引发的问题

标签:for   c   问题   ar   line   new   file   har   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!