Reputation: 144
I have a folder on my Ubuntu machine with a large amount of images in it.
How would I find all the files which have a certain ending, such as _some_ending.tif
?
Upvotes: 0
Views: 223
Reputation: 1322
In only the current directory :
ls *_some_ending.tif
To recurse directories :
find . -name "*_some_ending.tif"
Upvotes: 3