How can I open a directory which I am currently working on from terminal in nautilus file manager?
Asked
Active
Viewed 4,547 times
2 Answers
3
nautilus works as
nautilus [options] URIs...
Now, to open pwd in nautilus, we can do
nautilus ./
TheKojuEffect
- 3,465
Registered User
- 5,174
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?.