<html>
<head>
<title>pwd</title>
<body bgcolor=#ffffff>
<h2 align=center>pwd</h2>
<h4 align=center>OS/161 Reference Manual</h4>

<h3>Name</h3>
pwd - print working directory

<h3>Synopsis</h3>
/bin/pwd

<h3>Description</h3>

pwd prints the current working directory.

<h3>Requirements</h3>

pwd uses the following system calls:
<ul>
<li> <A HREF=../syscall/__getcwd.html>__getcwd</A>
<li> <A HREF=../syscall/write.html>write</A>
<li> <A HREF=../syscall/_exit.html>_exit</A>
</ul>

pwd should function properly once the basic system calls assignment is
completed, except on filesystems or in directories that do not support
getcwd.
<p>

pwd should function properly in all directories of your filesystem
once the file system assignment is completed.

</body>
</html>