Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 3 years have passed since last update.

grep

Posted at

できること

  • 文字列の検索、フィルタリング

基本構文

$  grep $検索したい文字列 $ロケーション

よく使う構文

よく使うオプション

大文字小文字を区別しないで検索

$  grep -i

検索した文字列の前後を表示

$  grep -3
  • 前後3行をあわせて表示
$  grep -A 3
  • 後3行をあわせて表示
$  grep -B 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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?