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?

link|improve this question

2  
what about find? – Aif Nov 6 '09 at 22:09
1  
My bash doesn't handle **/*.ext. Are you sure it does work for you? – tangens Nov 6 '09 at 22:14
feedback

4 Answers

up vote 4 down vote accepted

This will work in Bash 4:

ls -l {,**/}*.ext

In order for the double-asterisk glob to work, the globstar option needs to be set (default: on):

shopt -s globstar

From man bash:

    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.
link|improve this answer
feedback

This wil print all files in the current directory and its subdirectories which end in '.ext'.

find . -name '*.ext' -print
link|improve this answer
feedback

Using find should do it for you:

find . -type f -name \*.ext
link|improve this answer
feedback
$ find . -type f

That will list all of the files in the current directory. You can then do some other command on the output using -exec

$find . -type f -exec grep "foo" {} \;

That will grep each file from the find for the string "foo".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.