Ignoring files with ag – silver searcher
The pattern for --ignore
is not a regex like for -G
.
ag searchterm -G js$ # Only search Javascript files. -G allows for regular expressions
ag searchterm --ignore=*.js # Ignore searching through Javascript files. --ignore doesn't take a regex
- Pushed on 12/04/2013 by Christian