user2221667
user2221667

Reputation: 144

Search for files with specific ending

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

Answers (1)

kjprice
kjprice

Reputation: 1322

In only the current directory :

ls *_some_ending.tif

To recurse directories :

find . -name "*_some_ending.tif"

Upvotes: 3

Related Questions