I know **/*.ext expands to all files in all subdirectories matching *.ext, but what is a similar expansion that includes all such files in the
**/*.ext
*.ext
This wil print all files in the current directory and its subdirectories which end in '.ext'.
find . -name '*.ext' -print