View Single Post
jukzh's Avatar
Posts: 122 | Thanked: 22 times | Joined on Jun 2010 @ China
#36
Originally Posted by RenaldoTT View Post
I'm currently writing out the wiki umm what do you mean by going up and down the file system exactly can you spot me an example please. thanks
cd = change directory, without any argument it goes to the user's home dir, which is $HOME or ~
Code:
ls
new_folder
cd new_folder
ls
new_file_in_new_folder
cd .. # go to parent directory
ls
new_folder