the_silver_searcher
the_silver_searcher copied to clipboard
A code-searching tool similar to ack, but faster.
Fixes: #1537 Submitted for the sake of thoroughness since I've written it. :/
With filetypes `cc: .c, .h, .xs` and `hh: .h`, I can combine them as `ack --cc --nohh` to search only C implementation files but not headers. Trying to do the...
input: echo "Foot" | ag '[^a-z]oo' outout: nothing input: echo "Foot" | ag -s '[^a-z]oo' output: Foot why? i can't understand it.
Right now it just says: "ERR: Zip files not yet supported" and "Cannot decompress zipped file" It would be awesome too look into jar files.
`ag` and some other tools support `.ignore` file, where one can exclude searching in specific files and directories that are of no interest. Unfortunately in some projects, like for example...
I'm writing an academic paper where I use `ag` to do some basic things, but I still like to cite open source software where I can. Is there a standard...