pwd.n
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. '"
  2. '" Copyright (c) 1993 The Regents of the University of California.
  3. '" Copyright (c) 1994-1996 Sun Microsystems, Inc.
  4. '"
  5. '" See the file "license.terms" for information on usage and redistribution
  6. '" of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  7. '" 
  8. '" RCS: @(#) $Id: pwd.n,v 1.3.18.1 2004/10/27 14:23:57 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH pwd n "" Tcl "Tcl Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. pwd - Return the absolute path of the current working directory
  16. .SH SYNOPSIS
  17. fBpwdfR
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. Returns the absolute path name of the current working directory.
  22. .SH EXAMPLE
  23. Sometimes it is useful to change to a known directory when running
  24. some external command using fBexecfR, but it is important to keep
  25. the application usually running in the directory that it was started
  26. in (unless the user specifies otherwise) since that minimises user
  27. confusion. The way to do this is to save the current directory while
  28. the external command is being run:
  29. .CS
  30. set tarFile [file normalize somefile.tar]
  31. set savedDir [fBpwdfR]
  32. cd /tmp
  33. exec tar -xf $tarFile
  34. cd $savedDir
  35. .CE
  36. .SH "SEE ALSO"
  37. file(n), cd(n), glob(n), filename(n)
  38. .SH KEYWORDS
  39. working directory