pwd
Print Working Directory - ie. Where are we currently.ls
List the contents of a directory.cd
Change Directories - ie. move to another directory.#### Important Concepts
file
obtain information about what type of file a file or directory is.
ls -a
List the contents of a directory, including hidden files.
#### Important Concepts
man <command>
Look up the manual page for a particular command.
man -k <search term>
Do a keyword search for all manual pages containing the given search term.
/<term>
Within a manual page, perform a search for ‘term’
n
After performing a search within a manual page, select the next found item.
#### Important Concepts
The man pages are your friend: Instead of trying to remember everything, instead remember you can easily look stuff up in the man pages.
File Manipulation
mkdir
Make Directory - i.e., Create a directory.
rmdir
Remove Directory - i.e., Delete a directory.
touch
Create a blank file.
cp
Copy - i.e., Copy a file or directory.
mv
Move - i.e., Move a file or directory (can also be used to rename).
rm
Remove - i.e., Delete a file.
#### Important Concepts