up vote 20 down vote favorite
6
share [g+] share [fb]

I've found the "open" command in Mac OS X very handy in the command line. From "man open":

The open command opens a file (or a directory or URL), just as if you had double-clicked the file's icon. If no application name is specified, the default application as determined via LaunchServices is used to open the specified files.

That is, if I want to open a PDF file with the default PDF viewer (happens to be Preview), I only need to do:

open my.pdf

In Linux, however, to open a PDF file from the command line, I had to dig around to find the default PDF viewer is, for instance, "evince" (who'd have guessed??), and then

evince my.pdf

So, is there a simple equivalent of the 'open' command in the Linux command line?

Thanks!

link|improve this question
feedback

4 Answers

up vote 22 down vote accepted

You could try xdg-open, most Linux distros have it. It will open default associated app for your file.

FYI http://portland.freedesktop.org/xdg-utils-1.0/xdg-open.html

link|improve this answer
1  
A big difference between this and open, however, is that this doesn't open the file/app in the background. Linux apps seem to be very chatty and often output multiple lines of diagnostics and warnings right into your terminal (even though nothing really went wrong). I usually have to do something like xdg-open <file> &> /dev/null & instead. Is there anything better than xdg-open in this regard? – Suan Nov 30 '11 at 4:43
feedback

The equivalent you are looking for is xdg-open, which can be used in the same way as OS X's open command. For example:

xdg-open ~/Documents/Chubby_Bubbies.odt

However, this is really hard to type quickly and accurately. Instead, you should make an alias to xdg-open, which makes the process much quicker.

Of course, you can alias it to open to make it match OS X (you can pick anything you want), but personally, I use the right square bracket (]) for my shortcut for speed reasons. To use this, add the following to your .bashrc file:

alias ']'='xdg-open'

Then, to open any resource, use it like any of these examples:

] www.google.com
] file.txt
] ~/Pictures
] ssh://myserver.local/home/jeremy

Also this lets you open a file browser (e.g. Nautilus) in the current directory:

] .

From experience I have found that one-letter aliases work best for the above shortcut. After all, the goal is efficiency. And you can go back and make the same alias on OS X — I leave that as an exercise to the reader. :-)

link|improve this answer
6  
I made an alias from 'open' to 'xdg-open' in order to have it consistent on both Linux and Mac. – Adam Byrtek Oct 20 '09 at 21:19
1  
Fantastic example! – ExplodingRat Aug 30 '11 at 13:31
feedback

Traditionally, you can use the "see" command. Which just uses run-mailcap. This will work without Gnome and X etc.

man see
link|improve this answer
feedback

gnome-open

link|improve this answer
feedback

Your Answer

 
or
required, but never shown