nautilus $PWD

nautilus $PWD

might help you at some time

4 thoughts on “nautilus $PWD

    1. most of the time we work on a different directory(in terminal), at that point if you just typed nautilus, it will open your home directory but not the pwd.
      and in fact my implementation is so naive, it will fail if your working directory has space characters.
      So now i am using
      nautilus “`pwd`”
      or
      nautilus “$PWD”
      which is more efficient, but this one too fails if your pwd contains quote’s

      Like

Leave a comment