3 examples for pwd

{{ score }}
  # Displays the path of the current working directory.
# In other words, displays the folder you are in
pwd
        
{{ score }}
  # Prints path to current working directory.
pwd
        
{{ score }}
  # 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