Linux / UNIX: Print Current Working Directory with pwd command

by Vivek Gite on May 6, 2007 · 2 comments

Q. How do I display the absolute path to the current working directory under Linux or UNIX operating system?

A. The pwd command displays the absolute pathname of the current working directory to the computer screen.

Print name of current/working directory

Type pwd command:
pwd
Output:
/home/vivek

Above command print the full filename of the current working directory i.e /home/vivek.

Display actual directory location

Use -P option to display the physical current working directory (all symbolic links resolved). For example, /home/lighttpd is /var/www/root/lighttpd:
cd /home/lighttpd
pwd

Output:

/home/lighttpd

Now run with -P option
pwd -P
Output:

/var/www/root/lighttpd

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

{ 2 comments… read them below or add one }

1 bigt June 15, 2011

I ran across an article that showed how to use pwd in an if statement, but i can not find that article. can you poin me to some artcle that might explain this.

thanks

Reply

2 Vivek Gite June 15, 2011
#!/bin/bash
#....
_pwd="$(pwd)"
if [ "$_pwd" == "boo" ]
then
      echo "Current pwd is boo, starting backup..."
else
      echo "cd to boo and try again."
fi

Reply

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 9 + 8 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: