Searching Files in Finder using Natural Language
Yet another day, I wanted to find some images for testing our image uploading
feature. I found that Finder/Spotlight can accept queries in natural language:
images smaller than 2MB
.
Of course we can also use find
in command line to filter files as well:
Find files equals to a specific size
find . -size 2M
Find files larger than a specific size
find . -size +2M
Find files smaller than a specific size
find . -size -2M