pwd
ls
cd folder
/absolute/path/to/file
relative/path/to/file
leading slash
.
..
# if I start here:
$ pwd
/Users/iguest/Desktop
# and then do this:
$ cd ../Desktop/lectures/.././../
#where do I end up?
# if I start here:
$ pwd
/Users/iguest/Desktop
# and then do this:
$ cd /../Desktop
#where do I end up?
echo "message"