我正在使用 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 变量中的正斜杠有关,但我不太确定。仍然是命令行脚本的新手。
我将不胜感激。
谢谢。