LoginSignup
0
2

More than 1 year has passed since last update.

Macでのgrep検索を使いこなす

Posted at

WindowsのさくらエディタのGrep検索便利だけどMacでgrep検索するには使えないので、この際しっかり覚えておこうと思い書き留めました

ワイルドカードでファイル名を指定する

grep "hello" /Users/test/*.txt

rオプションで、すべてのファイルを対象にサブディレクトリまで検索する

grep -r "hello" /Users/test

検索結果からファイル名だけを表示する

grep -rl "hello" /Users/test

一致した行の行番号を表示

grep -rn "hello" /Users/test

一致した行の前後3行も表示

 grep -r3 "hello" /Users/test

大文字小文字を区別しない

 grep -ri "hello" /Users/test
0
2
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
0
2