

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to display the current working directory in the Linux system?
To print the current working directory, we use the pwd command in the Linux system.
pwd (print working directory) – The pwd command is used to display the name of the current working directory in the Linux system using the terminal. This is a shell building command that is available in most Unix shells such as Bourne shell, ash, bash, kash, and zsh.
Syntax
The general syntax of the pwd command is as follows −
pwd [-LP]
A brief description of options available in the pwd command.
Sr.No. | Option & Description |
---|---|
1 | -L (logical) Display the value of $pwd if it names the current working directory |
2 | -P (physical) Display the physical directory, without any soft link |
3 | --help Displays a help message and then exits. |
By default, the pwd works as if -L option was specified.
Exit Status
The pwd command returns true unless an invalid option supplied or the current directory could not be read.
To display the current working directory, we use the pwd command in the Linux/Unix system as shown below.
vikash@tutorialspoint:~ pwd /home/vikash
To display the physical directory instead of symbolic links or soft links, we use -P option with the pwd command in the Linux/Unix system as shown below.
vikash@tutorialspoint:~ pwd -P /home/vikash
To display more about the pwd command we use -help option with the pwd command as shown below.
vikash@tutorialspoint:~ pwd --help
After execution of above command. It will be prompt a short description with available options available in the pwd command.
- Related Questions & Answers
- How to change the shell working directory in Linux?
- How to set the current working directory in Python?
- Get the Current Working Directory in Java
- How to know current working directory in Python?
- Find out the current working directory in C/C++
- Java Program to Get Current Working Directory
- How to display the first part of the file in the Linux system?
- How to display the last part of the file in the Linux system?\n
- How to list the directory content in Linux?
- How to flushes file system buffers in the Linux operating system?
- Specifying working directory while executing FM SXPG_COMMAND_EXECUTE in SAP system
- How to get the current username and directory in Golang?
- How to move jobs to the background in the Linux system?
- Linux – How to find the files existing in one directory but not in the other directory?
- How to change the root directory of the current process in Python?