diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2004-04-16 10:28:54 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2004-04-16 10:28:54 (GMT) |
| commit | 0216785dfce9c7b3478d983b6a43ce8a77490e80 (patch) | |
| tree | b8531294268ac821a86ec0ff6899c6b714fad64a | |
| parent | 1461dfb645b5d0da9071ac1e373af3d8eb270fc0 (diff) | |
| download | tcl-0216785dfce9c7b3478d983b6a43ce8a77490e80.zip tcl-0216785dfce9c7b3478d983b6a43ce8a77490e80.tar.gz tcl-0216785dfce9c7b3478d983b6a43ce8a77490e80.tar.bz2 | |
Added example based on [Patch 935911] from David Welton.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | doc/gets.n | 15 |
2 files changed, 18 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2004-04-16 Donal K. Fellows <donal.k.fellows@man.ac.uk> + + * doc/gets.n: Added example based on [Patch 935911]. + 2004-04-15 Donal K. Fellows <donal.k.fellows@man.ac.uk> * generic/tclClock.c (Tcl_ClockObjCmd): Minor fault in a [clock @@ -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: gets.n,v 1.4 2001/09/14 19:20:40 andreas_kupries Exp $ +'\" RCS: @(#) $Id: gets.n,v 1.5 2004/04/16 10:28:55 dkf Exp $ '\" .so man.macros .TH gets n 7.5 Tcl "Tcl Built-In Commands" @@ -52,6 +52,19 @@ only of the end-of-line character(s). The \fBeof\fR and \fBfblocked\fR commands can be used to distinguish these three cases. +.SH "EXAMPLE" +This example reads a file one line at a time and prints it out with +the current line number attached to the start of each line. + +.CS +set chan [open "some.file.txt"] +set lineNumber 0 +while {[gets $chan line] >= 0} { + puts "[incr lineNumber]: $line" +} +close $chan +.CE + .SH "SEE ALSO" file(n), eof(n), fblocked(n), Tcl_StandardChannels(3) |
