sed
文字列の置換や抽出ができる
Linuxコマンド
ストリームエディタ
tr
ではできない複雑な処理もできる
文字の置換
$ sed 's/old/new/g' input.txt > output.txt
s/
substitute: 置換
/g
global
入力全体を見る