MacOS – OSX file navigation for pictures like windows

finderkeyboardmacospreview

In windows I can hold control and use my arrow keys. When I find a file I want to be included in the group selection I hit the space bar(I think this is how it works) and it will add to the selected list of items.

I'm not working by file name, I'm working by picture preview. So the ability to scroll through the list and see previews is important while group selecting. I'm trying to delete pictures. I have thousands in one folder. Should I use win32 to do this? or am I just missing how to do it with OSX?

Best Answer

I often select images to keep or delete by generating HTML files like this:

printf %s\\n ~/Pictures/folder/*.jpg|while read l;do printf %s "<a href=$l><img src=$l height=469></a>";done>/tmp/a.html;open /tmp/a.html

Then I for example move the files I opened in tabs to another folder:

osascript -e 'set text item delimiters to linefeed' -e 'tell app "Safari" to URL of tabs of window 1 as text'|cut -d/ -f3-|xargs gmv -t ~/Desktop