Figure 31-2. Finding the current directory name
The current directory has i-number 234. Next, pwd
asks Unix to open the parent directory file, the directory one level
up, through the relative pathname (..).
It's looking for the name that goes with i-number
234. Aha: the current directory is named joe, so
the end of the pathname must be joe.
Next step: pwd looks at the .
entry in the directory one level up to get its i-number, 14. As
always, the name of the one-level-up directory is in its parent
(.., i-number 12). To get its name,
pwd opens the directory two levels up and looks
for i-number 14, usr. Now pwd
has the pathname usr/joe.
Same steps: look in the parent, i-number 12. What's
its name? Hmmm. The i-number of its parent, 12, is the same as its
own -- and there's only one directory on the
filesystem like this: the root directory (/). So
pwd adds a slash to the start of the pathname and
it's done: /usr/joe.