■元のテキスト $ cat sample.txt 1 [.exe 2 a2p.exe 3 addftinfo.exe 4 afmtodit 5 apropos 6 arch.exe 7 ascii.exe 8 ash.exe 9 awk 10 banner.exe ■行追加(aコマンド) 1.指定したテキストを1行追加 3行目の後ろに「ABC」を追加。aコマンドの後ろに「\」を入れて、その後に追加したい文字列を入力。 aの前の「3」で追加する行数を指定。 $ sed '3a\ABC' sample.txt 1 [.exe 2 a2p.exe 3 addftinfo.exe ABC 4 afmtodit 5 apropos 6 arch.exe 7 ascii.exe 8 ash.exe 9 awk 10 banner.exe 行数の範囲を指定する場合