linux - How can I recursively find all files in current …
https://stackoverflow.com/questions/5905054/how-can-i-recursively-find-all-files-in-current-and-subfolders-based-on-wildcard
The default way to search for files recursively, and available in most cases is. find . -name "filepattern" It starts recursively traversing for filename or pattern from within the current directory where you are positioned. With the find command, you can use wildcards, and various switches. To see the full list of options, type. man find
DA: 4 PA: 76 MOZ Rank: 76