Navigating the Filesystem
The shell always has a current working directory. pwd prints it, ls lists its contents, and cd changes it. Paths are either absolute (starting with /) or relative to the current directory.
pwd # print working directory
ls -la # list all files, including hidden, with details
cd projects/site # move into a relative path
cd .. # move up one directory
cd ~ # jump to the home directory