I am using Ubuntu.
From my terminal, how can I open my OS default file manager on a certain folder (e.g. on a folder that I view at current directory)?
say I change my current directory to:
cd /root/dir/
then I list all the files there:
ls folder1 folder2 folder3
Now I want to open folder1.
If I type ./
I get:
./folder1 bash: ./folder1: Is a directory
What is the command to make the file manager to open on folder1
?
cd folder1
– Avinash Raj May 11 '14 at 13:00xdg-open ./folder1
– user.dz May 12 '14 at 04:03