1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

sedの図解 vol.1

Last updated at Posted at 2022-07-22

全体の構造

sedの内部には「パターン・スペース」と「ホールド・スペース」という、2本のバッファがある。
両方とも、初期状態は「空」である。
00.png

これから実行するコマンド

"strawberry"の"straw"を"blue"に置換して、"blueberry"にしたいとする。

echo "strawberry, strawberry" | sed -e "s/straw/blue/g"
blueberry, blueberry
  • echoコマンドについて
    echoコマンドは、文字列の末尾に自動で改行を付与する
    もし付与したくない場合は、-nオプションを指定すると付与されなくなる。

処理の流れ

  1. 入力ストリームに文字列を入力する(例:キーボード入力など)
    01.png

  2. 入力ストリームからパターン・スペースに文字列を読み込む
    この際、行末の改行は自動で取り除かれる
    02.png

  3. コマンドを実行する
    strawblue に置換する
    03.png

  4. 実行結果を出力ストリームに出力する(例:画面表示など)
    この際、2.で取り除かれた改行が自動で元に戻される
    04.png

    • 出力ストリームに出力したくない場合は?
      -nオプションを指定すると、出力されなくなります。
    echo "strawberry, strawberry" | sed -n -e "s/straw/blue/g"
    # (出力されなくなった)
    
  5. 次の行(もしあれば)を読み込む

参考文献

  • GNU sed manual
    • やさしい英語で丁寧に解説されている
  • sed1line.txt
    • 便利なsedのワンライナーがいくつも紹介されている
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?