Skip to content

Understanding Paths

PathMeaning
/Root of the entire filesystem
~Your home directory (/Users/yourusername)
~/DesktopYour Desktop folder
~/DocumentsYour Documents folder
~/DownloadsYour Downloads folder
.Current directory
..Parent directory

Absolute vs Relative Paths

bash
# Absolute path (starts from root)
cd /Users/fabiocorrea/Documents

# Relative path (starts from current directory)
cd Documents