cd directory |
Change into the specified directory. |
cp old_filename new_filename |
Copy a file named old_filename to a file named new_filename. |
cp -r old_directory new_directory |
Copy a directory named old_directory to a directory named new_directory. |
exit |
Exit UNIX. |
ls |
List the contents of the current directory. |
man command |
Display a manual page containing information about the specified UNIX command. |
mkdir directory |
Make the specified directory. |
mv old_filename new_filename |
Move a file named old_filename to a file named new_filename. Useful for renaming files. |
passwd |
Change your password. |
pwd |
Display the present working directory. |
rm filename |
Remove the specified file. |
rmdir directory |
Remove the specified empty directory. |