pwd.html 765 B

123456789101112131415161718192021222324252627282930313233343536
  1. <html>
  2. <head>
  3. <title>pwd</title>
  4. <body bgcolor=#ffffff>
  5. <h2 align=center>pwd</h2>
  6. <h4 align=center>OS/161 Reference Manual</h4>
  7. <h3>Name</h3>
  8. pwd - print working directory
  9. <h3>Synopsis</h3>
  10. /bin/pwd
  11. <h3>Description</h3>
  12. pwd prints the current working directory.
  13. <h3>Requirements</h3>
  14. pwd uses the following system calls:
  15. <ul>
  16. <li> <A HREF=../syscall/__getcwd.html>__getcwd</A>
  17. <li> <A HREF=../syscall/write.html>write</A>
  18. <li> <A HREF=../syscall/_exit.html>_exit</A>
  19. </ul>
  20. pwd should function properly once the basic system calls assignment is
  21. completed, except on filesystems or in directories that do not support
  22. getcwd.
  23. <p>
  24. pwd should function properly in all directories of your filesystem
  25. once the file system assignment is completed.
  26. </body>
  27. </html>