如何从bash脚本自动将值更改为conf文件? 机器:CentOS 6和httpd安装。
需要改变值
ErrorLog logs/error_log
要
ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"
但是从bash脚本自动生成?
答案 0 :(得分:2)
试试这个:
sed -i 's#ErrorLog logs/error_log#ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"#' httpd.conf