How can I recursively find all files in current and subfolders based on wildcard matching?
1
Use find for that:
find . -name "foo*"
find
needs a starting point, and the .
(dot) points to the current directory.