3
3

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 1 year has passed since last update.

Linux | grep で上下周辺のテキストも表示するオプション ( $ grep -C [行数] )

Last updated at Posted at 2016-07-20

こういうテキストファイルがある場合。

stones.txt
Jumpin
Jack
Flash
Its a
gas gas gas!

-C オプションで、上下もあわせて表示できる。

$ grep -C 1 Flash stones.txt

Jack
Flash
Its a

下だけ

-A で下だけあわせて表示する。

$ grep -A 1 Flash stones.txt

Flash
Its a

上だけ

-B で下だけあわせて表示する。

$ grep -B 1 Flash stones.tt

Jack
Flash

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

Twitter

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?