home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / mac / exsource.old / 9_6.tcl < prev    next >
Text File  |  2003-04-15  |  141b  |  11 lines

  1. #
  2. # Example 9-6
  3. # Opening a process pipeline.
  4. #
  5.  
  6. set input [open "|sort /etc/passwd" r]
  7. set contents [split [read $input] \n]
  8. close $input
  9.  
  10.  
  11.