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 current directory as well?
|
feedback
|
|
This will work in Bash 4:
In order for the double-asterisk glob to work, the
From
globstar
If set, the pattern ** used in a filename expansion con‐
text will match a files and zero or more directories and
subdirectories. If the pattern is followed by a /, only
directories and subdirectories match.
| ||||
|
feedback
|
|
This wil print all files in the current directory and its subdirectories which end in '.ext'.
| |||
|
feedback
|
That will list all of the files in the current directory. You can then do some other command on the output using -exec
That will grep each file from the find for the string "foo". | ||||
|
feedback
|
**/*.ext. Are you sure it does work for you? – tangens Nov 6 '09 at 22:14