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:
Now run with -P option/home/lighttpd
pwd -P
Output:/var/www/root/lighttpd
No comments:
Post a Comment