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?

More than 5 years have passed since last update.

sedコマンドで文字列を抜き出す方法 【自分用メモ】

Last updated at Posted at 2018-02-21

シェルでデータ加工するときにsedコマンドをよく使ったので、自分用にまとめと利用例です。
文字列を置換したり、キーワード間の文字列を取得したり、〜までを抽出したりしました。
テキストの加工などの参考にでもなれば幸いです。

HTMLタグを削除 よく使った

sed -e 's/<[^>]*>//g'

キーワード間の文字列を取得

sed -n '/開始キーワード/,/終了キーワード/p' 対象とするファイル名

以下は、HTMLコード間〜の抽出。

sed -n '/<body>/,/<\/body>/p' sample.html 
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?