| Command Prompt and Command | Comments |
| bash-2.02# pwd | this command will respond with the current directory. The expected response is /var/tmp |
| bash-2.02# cd .. | this will move up one directory level to the var directory. Note the space between cd and .. |
| bash-2.02# echo * | this command will list of subdirectories and files inside the var directory |
| bash-2.02# mkdir hack | this will create a hack directory if it does not already exist |
| bash-2.02# cd hack | this will make hack the current directory |
| bash-2.02# pwd | This will show current directory location. The response should be /var/hack if the directory was created properly |