cd.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: cd.n,v 1.3.18.1 2004/10/27 09:35:38 dkf Exp $
  9. '" 
  10. .so man.macros
  11. .TH cd n "" Tcl "Tcl Built-In Commands"
  12. .BS
  13. '" Note:  do not modify the .SH NAME line immediately below!
  14. .SH NAME
  15. cd - Change working directory
  16. .SH SYNOPSIS
  17. fBcd fR?fIdirNamefR?
  18. .BE
  19. .SH DESCRIPTION
  20. .PP
  21. Change the current working directory to fIdirNamefR, or to the
  22. home directory (as specified in the HOME environment variable) if
  23. fIdirNamefR is not given.
  24. Returns an empty string.
  25. Note that the current working directory is a per-process resource; the
  26. fBcdfR command changes the working directory for all interpreters
  27. and (in a threaded environment) all threads.
  28. .SH EXAMPLES
  29. Change to the home directory of the user fBfredfR:
  30. .CS
  31. fBcdfR ~fred
  32. .CE
  33. .PP
  34. Change to the directory fBlibfR that is a sibling directory of the
  35. current one:
  36. .CS
  37. fBcdfR ../lib
  38. .CE
  39. .SH "SEE ALSO"
  40. filename(n), glob(n), pwd(n)
  41. .SH KEYWORDS
  42. working directory