You are not logged in.
Pages: 1
Actual quote from actual terminal:
me@pc:~$ cd /.themes
bash: cd: /.themes: No such file or directory
me@pc:~$ mkdir .themes
mkdir: cannot create directory ‘.themes’: File exists
What am I missing? I see .themes as a hidden directory when I ls, but i can't access it.
Offline
me@pc:~$ cd /.themes
What you are saying is, go to the .themes directory off of the / (root) directory.
What you want to say is:
cd .themes
...or to specify the full path:
cd ~/.themes
~ is a shortcut to your home directory.
Last edited by ToZ (2013-11-06 23:22:44)
Please remember to mark your thread [SOLVED] to make it easier for others to find
--- How To Ask For Help | FAQ | Developer Wiki | Community | Contribute ---
Offline
Thank you ToZ.
I did not know what the ~ meant. Appreciate the help.
Offline
Pages: 1
[ Generated in 0.006 seconds, 7 queries executed - Memory usage: 536.71 KiB (Peak: 559.38 KiB) ]