home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / tclX6.4c / dist / tcllib / help / files / for_file < prev    next >
Encoding:
Text File  |  1992-11-10  |  374 b   |  14 lines

  1.  
  2.  
  3.           for_file var filename { code }
  4.                For each line in filename, sets var to the line and
  5.                executes code.
  6.  
  7.                The break and continue commands work as with foreach.
  8.  
  9.                For example, the command
  10.  
  11.                     for_file line /etc/passwd {echo $line}
  12.  
  13.                would echo all the lines in the password file.
  14.