首页 > 代码库 > crontab 里 % 引发的问题
crontab 里 % 引发的问题
写个 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。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。