How can I open a directory which I am currently working on from terminal in nautilus file manager?
Asked
Active
Viewed 4,265 times
2
-
3Don't. Your question contains the term `present` working directory. The other does not contain that terminology (if uses `current`). If we keep the question, people searching on `pwd` will be redirected via this question to the other question. – don.joey Mar 15 '13 at 07:16
-
1As @Private says, we generally keep duplicates. We handle them by closing them. When a question is closed as a duplicate of another question, it is made to point clearly to that other question. For more details, you may want to see [this blog post](http://blog.stackoverflow.com/2009/05/linking-duplicate-questions/). – Eliah Kagan Mar 15 '13 at 07:31
2 Answers
3
nautilus works as
nautilus [options] URIs...
Now, to open pwd in nautilus, we can do
nautilus ./
TheKojuEffect
- 3,465
- 3
- 31
- 42
Registered User
- 4,904
- 11
- 37
- 43
1
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?.