3 examples for pwd
# Displays the path of the current working directory.
# In other words, displays the folder you are in
pwd
# Print the working directory, ignoring symlinks.
# If /foo/bar is a symlink to /baz/bang, and you
# cd to /foo/bar and run pwd -P, it will show
# /baz/bang
pwd -P