02. Navigation Flashcards
How do you list the directory you are working in.
Print Working Direcory (pwd)
Howe do you move between directories?
Change Directories(cd)
How do you list the contents of a direcotry?
List (ls)
What are absolute paths?
An abosolute path begins with the root directory and list all directories between root and the the current working directories. /home/username
What is a relative path?
A relative path begins with the working directory. The relative path “.” indicates the current directory and “..” indicates the parent or directory above the current directory.
How can you change to your previous working directory.
“cd -“ This will change to what ever you previeous directory was.
How can you quickly navigate to a users home directory?
cd ~username. This will take you directly to the home directory of what ever user name you enter.