1.見たいところを抽出
# sed -n '開始行,終了行p' ファイル名
-nオプション:指定した行だけ表示する。-nとpコマンドの表記は重複するトコがお茶目
オプションは、-n, –quiet, –silent のいづれかでOK
例:sed -n ‘1,4p’ file
‘…’はシェルに特定の文字やパターンを変換させない指示なので’1,4p’なら1,4pでも構わない
例:sed -n 1,4p file
sed -n '/{開始行のパターン}/,/{開始行のパターン}/p' ファイル名
たまに逆のやり方が必要になるかもしれない
sed -n '/{開始行のパターン}/,/{開始行のパターン}/!p' ファイル名
例:sed -n ‘/start/,/end/p’ file
# sed -n '/<Directory \/>/,/<\/Directory>/p' /etc/httod/conf/httpd.conf
<Directory />
AllowOverride none
Require all denied
</Directory>
#
2.その範囲の中で特定のパターンを置換する
AllowOverride noneやRequire all deniedは何度の出現するので
http.confの
<Directory />と</Directory>の行の間の
AllowOverride noneをAllowOverride allに書き換えるなら
sed -i '/{開始行のパターン}/,/{開始行のパターン}s/{置換元パターン}/{置換後パターン}/' ファイル名
-iでファイルを上書きするので要バックアップ
# cp httpd.conf httpd.conf.bk ※バックアップは大事
# sed -n '/<Directory \/>/,/<\/Directory>/s/AllowOverride none/AllowOverride all/ p' httpd.conf
AllowOverride all
で置換したテキストが表示されたので
注意深く修正して上書きする
# cp httpd.conf httpd.conf.bk ※バックアップは大事
# sed -i '/<Directory \/>/,/<\/Directory>/s/AllowOverride none/AllowOverride all/' httpd.conf
# diff httpd.conf.bk httpd.conf
108c108
< AllowOverride none
---
> AllowOverride all
#
うっかり後ろのpを消し忘れるとコピーコマンドpが誤爆する
# sed -i '/<Directory \/>/,/<\/Directory>/s/AllowOverride none/AllowOverride all/ p' httpd.conf
# diff httpd.conf.bk httpd.conf
108c108,109
< AllowOverride none
---
> AllowOverride all
> AllowOverride all
#