home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
mac
/
exsource.old
/
9_6.tcl
< prev
next >
Wrap
Text File
|
2003-04-15
|
141b
|
11 lines
#
# Example 9-6
# Opening a process pipeline.
#
set input [open "|sort /etc/passwd" r]
set contents [split [read $input] \n]
close $input