To give you the best experience, this site uses cookies. Continuing to use 9bis.net means you agree to our use of cookies.
 

 

cd ( en )

Last modification : 2013/01/26 19:16

cd stands for change directory.

  • syntax to move to a new directory: cd directory
msh> cd C:/temp
msh> pwd
C:\temp

  • syntax to go back to the home directory: cd
msh> cd
msh> pwd
/home/Cyd

  • syntax to go back to the previous directory: cd -
msh> pwd
/home/Cyd
msh> cd C:/temp
msh> cd -
msh> pwd
/home/Cyd