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