How to open an image file from bash in Mac

command line

I am fairly new with a Mac (Mac from work), and get more and more disappointed. Now I am blocked again, because I did not find an EASY way to open an image from the command line…

Here is how it works in Linux (simple, no installation required):

eog test.jpg

How to achieve the similar thing on a Mac?

Best Answer

open test.jpg will open the image in the default application for JPEG files (on most Macs this will be Preview) and open -a Pixelmator test.jpg will open in the app Pixelmator if you have it installed. Obviously Pixelmator can be replaced with any application that can open the file.

The open command is quite powerful, it allows for opening files, directories and even URLs. I suggest you read the man page.