Search for all `.xls` files on Ubuntu from command-line?

0

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?

creamcheese

Posted 2010-03-12T18:58:44.890

Reputation: 171

Answers

5

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

Nifle

Posted 2010-03-12T18:58:44.890

Reputation: 31 337