Syntax of `pwd` command in Linux

The basic syntax of the ‘pwd’ command is

pwd [OPTIONS]

This command doesn’t have any arguments or options, but it can accept flags for specific behavior. 

How to Display Current Working Directory in Linux | pwd Command

The ‘pwd,’ which stands for “print working directory.” In this article, we will delve into the ‘pwd’ command, exploring its functionality, usage, and various examples. It prints the path of the working directory, starting from the root. pwd is shell built-in command(pwd) or an actual binary(/bin/pwd). $PWD is an environment variable that stores the path of the current directory. This command has two flags.

Table of Content

  • Syntax of `pwd` command in Linux
  • Flags For Specific behavior in `pwd` command in Linux.
  • How to Display the Current Working Directory in Linux

Similar Reads

Syntax of `pwd` command in Linux

The basic syntax of the ‘pwd’ command is...

Flags For Specific behavior in `pwd` command in Linux.

The “-L” flag resolves symbolic links and prints the path of the target directory. The default behavior of the shell built-in “pwd” is equivalent to using “pwd -L”. Mention the “-P” flag, which displays the actual path without resolving symbolic links. The default behavior of the binary “/bin/pwd” is the same as using “pwd -P”...

How to Display the Current Working Directory in Linux

1. Displaying the Current Working Directory Using Built-in pwd (pwd):...

Frequently Asked Questions

1) How do I print the current working directory in Linux using the ‘pwd’ command?...

Conclusion

In this article we discussed the ‘pwd’ command in Linux, which helps you find where you are in your computer’s folders or we can say “how to print the current working directory “. It can show you the real folder path (‘pwd -P’) or the symbolic one (‘pwd -L’). The $PWD thing does the same as ‘pwd -L’ and is handy for scripts. Remember, ‘/bin/pwd’ shows the actual path. The FAQs answered common questions, like how to use ‘pwd’ or save a folder path in a script....