如何从bash脚本中将值更改为httpd.conf?

时间:2015-07-06 04:48:35

标签: bash apache automation httpd.conf

如何从bash脚本自动将值更改为conf文件? 机器:CentOS 6和httpd安装。

需要改变值

ErrorLog logs/error_log

ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"

但是从bash脚本自动生成?

1 个答案:

答案 0 :(得分:2)

试试这个:

sed -i 's#ErrorLog logs/error_log#ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"#' httpd.conf