Answers for "find command in linux with examples recursively find string in all subdir"

2

linux recursively find directory by name

find / -type d -name "apt" 
sudo find / -type d -name "apt"
Posted by: Guest on November-23-2020
5

linux search for a given string in all files recursively

$ grep -r "String to be searched goes here" *
Posted by: Guest on September-29-2020

Code answers related to "find command in linux with examples recursively find string in all subdir"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language