Ubuntu – How to open a directory/folder and a URL through Terminal

command line

I can navigate my files quite fast through terminal. Faster than double clicking… open… look, double click… etc.

How do I open a directory in the Ubuntu GUI? For example:

cd projects
{some cmd} client_project

Then voila, it opens in the Ubuntu GUI as if i navigated manually?

Also, how can I open a URL in my default browser via terminal. It'd be awesome to go: F12

open http://google.com

And Chrome opens it up.

Best Answer

To Open Directory:

  • To open a Folder from terminal type the following,

    nautilus /path/to/that/folder
    

    or

    xdg-open /path/to/the/folder
    

    i.e

    nautilus /home/karthick/Music
    xdg-open /home/karthick/Music
    
  • Simply typing nautilus will take you file browser,

    nautilus
    

To Open URL:

  • You can type any one of the following in terminal,

    xdg-open http://google.com       
    google-chrome http://google.com                 
    opera http://google.com
    firefox http://google.com
    
  • If you want to open two URL's at the same time then leave some space after the first URL and type the second,

    firefox www.google.com www.gmail.com
    

Note:

  • Linux is case-sensitive, so type the file name correctly.
  • You can also add an alias to short the command,for example if you need openurl instead of x-www-browser you should edit the .bashrc file
    gedit ~/.bashrc
  • In the bottom of the file add the following lines

    alias openurl=x-www-browser
    

    alt text

  • Save and close the file.
  • Now you can open URLs by typing,

    openurl http://google.com