0
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.

【不定期更新】agコマンドのtips

Last updated at Posted at 2014-11-04

特定の単語が含まれていないファイルを調べる(ファイル名のみ出力)

ag search_text -L

さらにファイルの拡張子でフィルタリングしたい

ag search_text -L *.cs

正規表現もOK

ag serach_text -L -G \.cs$

特定の単語が含まれているファイルを調べる(ファイル名のみ出力)

ag search_text -l

0
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
0
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?