Issue
How can I recursively find all files in current and subfolders based on wildcard matching?
id='dv4'>
Solution
Use find
:
find . -name "foo*"
find
needs a starting point, so the .
(dot) points to the current directory.
Answered By - tux21b Answer Checked By - Katrina (WPSolving Volunteer)