diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-25 20:27:38 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-05-25 20:27:38 (GMT) |
commit | a8285cfa1f174bf3040c3c74b408ba979bfe8692 (patch) | |
tree | bdaee7e02f90c1e26d54eec8f6411c7eb5f5f456 /doc | |
parent | c47cbbfc3c93cea27d23b098ad98f584fbf235be (diff) | |
download | tcl-a8285cfa1f174bf3040c3c74b408ba979bfe8692.zip tcl-a8285cfa1f174bf3040c3c74b408ba979bfe8692.tar.gz tcl-a8285cfa1f174bf3040c3c74b408ba979bfe8692.tar.bz2 |
Added examples
Diffstat (limited to 'doc')
-rw-r--r-- | doc/cd.n | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: cd.n,v 1.4 2004/04/22 14:36:30 dkf Exp $ +'\" RCS: @(#) $Id: cd.n,v 1.5 2004/05/25 20:27:38 dkf Exp $ '\" .so man.macros .TH cd n "" Tcl "Tcl Built-In Commands" @@ -26,6 +26,17 @@ Returns an empty string. Note that the current working directory is a per-process resource; the \fBcd\fR command changes the working directory for all interpreters and (in a threaded environment) all threads. +.SH EXAMPLES +Change to the home directory of the user \fBfred\fR: +.CS +cd ~fred +.CE +.PP +Change to the directory \fBlib\fR that is a sibling directory of the +current one: +.CS +cd ../lib +.CE .SH "SEE ALSO" filename(n), glob(n), pwd(n) |