How can I recursively find all files in current and subfolders based on wildcard matching?
Use find for that:
find . -name "foo*"
find needs a starting point, and the . (dot) points to the current directory.
find
.
1.4m articles
1.4m replys
5 comments
57.0k users