pwD
PWD is an acronym commonly used in Unix-like environments to denote the present working directory. It can refer to two related concepts: the environment variable named PWD that stores a path, and the pwd command (or shell builtin) that prints the current directory.
The PWD environment variable is maintained by the shell and is updated as the user changes directories
The pwd command prints the current working directory. In GNU coreutils, it supports -L and -P: -L
Logical versus physical: The logical path reflects the path as seen by the user (including symbolic links)
Related concepts include OLDPWD, which stores the previous directory, and HOME, the user's home directory. PWD