What is the command to open the current directory in file browser from terminal? Let's say I am in my home folder on the terminal and I want to open file browser. I tried nautilus --browser
but there seems to be a command that continue to keep running and I can't continue with further commands in the terminal.
Asked
Active
Viewed 4,373 times
0

Pongal
- 51
xdg-open .
– PRATAP Jan 25 '20 at 12:35nautilus &
orxdg-open . &
to place the command in the background. See for example I can't use the terminal while gedit command is running – steeldriver Jan 25 '20 at 12:41