Find all files containing a string or text on Linux and Mac
📣 Sponsor
Sometimes on linux/unix computers, you will want to do a search for any files containing a particular string within it. This can be particularly useful when searching for specific things for a CI/CD pipeline.
Fortunately, it is not too hard in linux to do this with grep
.
Find all files which contain a particular string on Linux or Mac
Return the filename only
The below will find any file that contains the term 'html' in the '/views' directory. It will return only the file names.
grep -rl ./views -e 'html'
Return the text itself
Again, this will find any file containing the string 'html' in the '/views' directory. It will return the line which has that text in it.
grep -r ./views -e 'html'
Options for grep on Linux/Mac
You can string other options together, to get different results. When we say -r
, for example, we mean 'recursive' - i.e. it will search through every folder. When we write -rl
, this means essentially -r -l
, which means search recursively, and return only the file name.
Below is a list of all grep options or switches, which you can add to your query to get the results you need:
- -r - search recursively.
- -l - return only the file name.
- -i - ignore the case.
- -w - search only for words, i.e. not text within words. For example, if we search for 'html', then somehtmltext would not match..
- -n - returns the line number, but doesn't work with
-l
. - -s - suppress any error messages.
- -h - output the line itself, without the line number or file.
- -v - invert the search, i.e. searching for html with
-v
will return everything without html. - -f - used to indicate a file you want to use which contains a regular expression.
- -x - match only if the whole lines only. This will only return for a search of html if that exists on its own line separately.
More Tips and Tricks for Linux
- How the touch Command works on Linux
- How to Kill a Process Running on a Port
- How the cat Command works on Linux
- How to count all files in a directory in Linux
- How the mkdir command works on Linux
- Speed up your Website by Converting your Images to WebP from Terminal
- Delete .DS_Store recursively from all directories and sub-directories
- How to make a Symbolic Link on Linux
- How the chmod command works on Linux
- How to Remove Empty and Non Empty Directories in Linux