如何将值从 bash 脚本更改为 httpd.conf?
How to change value to httpd.conf from bash script?
如何从 bash 脚本自动更改 conf 文件的值?
机器:安装了 CentOS 6 和 httpd。
需要更改
的值
ErrorLog logs/error_log
到
ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"
但是自动从 bash 脚本?
试试这个:
sed -i 's#ErrorLog logs/error_log#ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"#' httpd.conf
如何从 bash 脚本自动更改 conf 文件的值? 机器:安装了 CentOS 6 和 httpd。
需要更改
的值ErrorLog logs/error_log
到
ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"
但是自动从 bash 脚本?
试试这个:
sed -i 's#ErrorLog logs/error_log#ErrorLog "|rotatelogs /var/log/httpd/error_log_%Y-%m 1G"#' httpd.conf