Absolute and Relative Paths
Absolute Paths
ls /var/log/syslog
# /var/log/syslog is an absolute path to the syslog fileRelative Paths
cd /var
ls log/syslog
# log/syslog is a relative path
ls ./log/syslog
# Using "." it specifies the commands starts in the current working directory
ls ../home/user/Documents/
# ".." is the parrent of the current working directoryLast updated