How to see the current directory the user is currently navigated on the Linux terminal?

August 5, 2021 - 1 min read

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 😃!

Feel free to share if you found this useful 😃.