How to open an image file from bash in Mac?

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?


Solution 1:

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.

Solution 2:

If you only want to preview the file, I recommend to use Quicklook.

qlmanage -p filename.jpg

This will launch a Quick Look window with whatever file is specified as ‘filename.jpg’, the file type can be anything that Quick Look is compatible with (which seems to be just about everything).

Source: OS X Daily