Directory Manipulation

cd

This is really a built in shell command and not a utility program. It changes the working directory of the shell (and all processes spawned by the shell) to the directory you specify on the command line. It works exactly like the MS-DOS command.

mkdir , rmdir

These programs make and remove directories. They work exactly like the Windows commands md and rd (except that you can make and remove several directories at once with them).

pwd

This program prints the name of the current working directory.