현재 위치해있는 디렉토리의 주소를 출력한다.
pwd [옵션]
[root@Linux ~]# cd /etc
[root@Linux etc]# pwd
/etc
[root@Linux /]# ls -l
total 28
lrwxrwxrwx. 1 root root 7 Apr 28 11:34 A_2 -> /test/A
...
[root@Linux /]# cd A_2
[root@Linux A_2]# pwd -L
/A_2
[root@Linux A_2]# pwd -P
/test/A
가장 많이 사용하는 명령어중 하나. 사용법이 매우 단순하다.