How to direct a cd to a specific directory?
use cd command {this command will change working dir}
ex: cd ~/Desktop
so
dirname@dirname-desktop:~$ pwd
/home/dirname
dirname@dirname-desktop:~$ cd ~/Desktop
dirname@dirname-desktop:~/Desktop$ pwd
/home/dirname/Desktop
dirname@dirname-desktop:~/Desktop$

