How to Search for Files and Folders Recursively via SSH
April 17, 2021
You need to use the following command to search for a file called FileName.txt under the current folder including all subfolders find ./ -type f -exec grep -l “text to find” {} \; find . -name FileName.txt If you are unclear about the file name or want to match a part of the file name,… read more »
5,614 total views, 3 views today