Ubuntu – How to search for multiple files at once? Linux GUI

search

In windows XP, after switching to advanced search mode I used to be able to search for multiple files merely by adding a comma between them like this….

90025,90028,90094

and that would return the 3 image files that I was looking for.

How can I do this in Linux ??

Best Answer

I don't think you can use the gui for that. You could use the command line for that:

find /path/to/dir -regex ".*\(90025\|90028\|90094\).*"

This will search for file names containing these numbers.

Related Question