0

我正在使用 Ubuntu Natty。

我正在尝试使用命令行 perl 编辑文本文件。下面是我的代码片段:

path_to_php_exec="/usr/local/php/bin/php"
path_to_php_prog="/root/run/php_gearman_worker.php"
perl -0777 -i -pe "s/(command[ ]*=[ ]*)[^\n]+/\${1}=$path_to_php_exec $path_to_php_prog\n/g" /etc/supervisord_program_gearman.conf

但是,当我运行它时,我收到以下错误

Bareword found where operator expected at -e line 1, near "s/(command[ ]*=[ ]*)[^\n]+/${1}=/usr"
Backslash found where operator expected at -e line 1, near "php\"
syntax error at -e line 1, near "s/(command[ ]*=[ ]*)[^\n]+/${1}=/usr"
Execution of -e aborted due to compilation errors.

我觉得这与我的 shell 变量中的正斜杠有关,但我不太确定。仍然是命令行脚本的新手。

我将不胜感激。

谢谢。

4

1 回答 1

0

是的,就是这样。您可以为 Perl 的s///命令选择不同的分隔符。此外,您的正则表达式是面向行的,那么为什么不逐行解析文件呢?

perl -i -pe \
    "$(printf 's{(command\s*=\s*).*}{$1 %s %s}g' "$path_to_php_exec" "$path_to_php_prog")" \
    /etc/supervisord_program_gearman.conf

我假设您不想将输出文件中的等号加倍,因此我将其从替换块中删除。

于 2012-05-17T19:22:51.207 回答