How would you search for all .xls files in the current directory and in all of the subdirectories below the current directory in Ubuntu from the command line?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

find . -type f -name '*.xls'

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.