2

How can I open a directory which I am currently working on from terminal in nautilus file manager?

don.joey
  • 29,392

2 Answers2

3

nautilus works as

nautilus [options] URIs...

Now, to open pwd in nautilus, we can do

nautilus ./
2

Type

nautilus . 

There is no need to add more than the .

You could make this an alias: alias n="nautilus ." and then you can just type n in the commandline to open the cwd in nautilus.

This is a duplicate. Please see How to open Nautilus at current command line directory?.

don.joey
  • 29,392