To see the current directory the user is currently navigated, you can use the pwd
command (aka present working directory command) on the Linux terminal.
# See the current working directory
pwd
# OUTPUT
/Users/developer
- Using the
pwd
command will show the current working directory the user is currently on the Linux terminal.
See the execution of the above command live in repl.it.
That's all 😃!