Is there a way to open a file browser window (in KDE or GNOME or some desktop environment) for a directory while your navigating directories from the terminal?

Text editors that have a GUI will open up when I run them via the command line; I just wanted to do that for certain directories when I'm roaming around.

link|improve this question
feedback

migrated from stackoverflow.com Mar 4 '10 at 16:30

This question came from our site for professional and enthusiast programmers.

3 Answers

xdg-open my_dir
link|improve this answer
feedback

In Gnome you can do

nautilus . &

The dot means current directory, and the & runs the process in the background so you can continue to use your terminal (and ctrl+c won't kill the browser).

link|improve this answer
1  
Just to help search engine users: if you're using Ubuntu, this probably applies to you. – Nathan Long Aug 10 '10 at 17:56
feedback

MacOS 10

Open current directory: open .

link|improve this answer
feedback

Your Answer

 
or
required, but never shown