【回答】
file内の特定の文字を置換するには sed コマンドを使用します。
以下の例ではtest.txtファイル内の "is" を "is not" に変換しています。
# cat test.txt
this is a test file.
# sed -i "s/is/is not/g" test.txt
# cat test.txt
this not is not a test file.
(*)本ページは Redhat Enterprise Linux 4以後を想定しています。
最終更新日:2012/12/28
[Redhat Enterprise linux 6(EL) FAQ トップへ]
[FAQ CENTER トップ]