Rodolfo Bandeira
← Archive
Article

How to use the grep command in linux using recursive mode

· 1 min read


If you want to search a file with a specific string inside it, just use this command line in your linux terminal:

grep -rl "string" /path

Rodolfo