Include `ack` and `rg` in addition to `ag`

Fixes #485
pull/471/merge
Joshua Levy 2017-08-27 15:58:06 -07:00 committed by GitHub
parent 1da7448d83
commit 837bb80e26
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ Notes:
- To locate a file by name in the current directory, `find . -iname '*something*'` (or similar). To find a file anywhere by name, use `locate something` (but bear in mind `updatedb` may not have indexed recently created files).
- For general searching through source or data files (more advanced than `grep -r`), use [`ag`](https://github.com/ggreer/the_silver_searcher).
- For general searching through source or data files, there are several options more advanced or faster than `grep -r`, including (in rough order from older to newer) [`ack`](https://github.com/beyondgrep/ack2), [`ag`](https://github.com/ggreer/the_silver_searcher) ("the silver searcher"), and [`rg`](https://github.com/beyondgrep/ack2) (ripgrep).
- To convert HTML to text: `lynx -dump -stdin`