List all the files containing a phrase | ag, rg

One of the most useful skills you can acquire to make you faster at almost any job that uses a computer is getting good at finding text in your current working diretory and identifying the files that its in. I often use the silver searcher ag or ripgr…


This content originally appeared on DEV Community and was authored by Waylon Walker

One of the most useful skills you can acquire to make you faster at almost any job that uses a computer is getting good at finding text in your current working diretory and identifying the files that its in. I often use the silver searcher ag or ripgrep rg to find files in large directories quickly. Both have a sane set of defaults that ignore hidden and gitignored files, but getting them to list only the filenames and not the matched was not trivial to me.

I've searched throught he help/man pages many times looking for these
flags and they always seem to evade me.

ag

Passing the flag -l to ag will get it to list only the filepath, and not the match. Here I gave it a --md as well to only return markdown filetypes. ag supports a number of filetypes in a very similar way.

ag nvim --md -l

rg

Giving rg the --files-with-matches flag will yield you a similar set of results, giving only the filepaths themselves and not the match statement. Also passing in the -g "*.md" will similarly yield only results from markdown files.

rg --files-with-matches you -g "*.md"

This article is part of my til series, an effort to build a short content pipeline that will eventually form larger content pieces.

https://waylonwalker.com/til


This content originally appeared on DEV Community and was authored by Waylon Walker


Print Share Comment Cite Upload Translate Updates
APA

Waylon Walker | Sciencx (2021-12-31T16:38:09+00:00) List all the files containing a phrase | ag, rg. Retrieved from https://www.scien.cx/2021/12/31/list-all-the-files-containing-a-phrase-ag-rg/

MLA
" » List all the files containing a phrase | ag, rg." Waylon Walker | Sciencx - Friday December 31, 2021, https://www.scien.cx/2021/12/31/list-all-the-files-containing-a-phrase-ag-rg/
HARVARD
Waylon Walker | Sciencx Friday December 31, 2021 » List all the files containing a phrase | ag, rg., viewed ,<https://www.scien.cx/2021/12/31/list-all-the-files-containing-a-phrase-ag-rg/>
VANCOUVER
Waylon Walker | Sciencx - » List all the files containing a phrase | ag, rg. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/12/31/list-all-the-files-containing-a-phrase-ag-rg/
CHICAGO
" » List all the files containing a phrase | ag, rg." Waylon Walker | Sciencx - Accessed . https://www.scien.cx/2021/12/31/list-all-the-files-containing-a-phrase-ag-rg/
IEEE
" » List all the files containing a phrase | ag, rg." Waylon Walker | Sciencx [Online]. Available: https://www.scien.cx/2021/12/31/list-all-the-files-containing-a-phrase-ag-rg/. [Accessed: ]
rf:citation
» List all the files containing a phrase | ag, rg | Waylon Walker | Sciencx | https://www.scien.cx/2021/12/31/list-all-the-files-containing-a-phrase-ag-rg/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.