2

我必须创建一个脚本来替换 apachehttpd.conf文件中的几行。我有2个问题。首先,如何将多行保存到一个变量中?我试过这个,但它没有用

replace="#ErrorLog "logs/error_log" '\n' ErrorLog "|<apache_location>/bin/rotatelogs <apache_location>/logs/error.%Y.%m.%d.log 86400"

'\n'无法添加换行符。然后我的想法是像这样使用sed (1) :

sed -i "s#ErrorLog "logs/error_log"#$replace#g" $apache_httpd

我不知道这是否会奏效。


我能够用几行创建变量:
VAR="#ErrorLog \"logs/error_log\""
VAR="$VAR"$'\n'"ErrorLog \"|<apache_location>/bin/rotatelogs <apache_location>/logs/error.%Y.%m.%d.log 86400\""

replace="ErrorLog \"logs/error_log\""

现在问题出现在 sed 上,我不得不使用不同的分隔符(http://backreference.org/2010/02/20/using-different-delimiters-in-sed/)。但它一直失败。
sed -i "s;$replace;$VAR;g" /root/daniel/scripts/test3/httpd.conf
sed: -e 表达式 #1, char 54: 未终止的 `s' 命令

4

1 回答 1

1

从我在这里看到的情况来看,您的问题是,您没有正确转义变量赋值和 sed 单行中的双引号。

问题一

如果有的话,你必须转义引号:

kent$  r="foo\n\"bar\"\nbaz"
kent$  echo $r
foo
"bar"
baz

问题 2

您的 sed 行中也需要转义引号:

例如:

kent$  cat file
keep the lines before
---
foo and "this"
---
keep the following lines

kent$  sed "s#foo and \"this\"#$r#" file
keep the lines before
---
foo
"bar"
baz
---
keep the following lines
于 2013-04-21T17:38:33.373 回答