Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Manipulating pipes on tcl

Status
Not open for further replies.

jwbruno

Programmer
Joined
Aug 19, 2002
Messages
2
Location
BR
I´m having some trouble on creating a pipe on tcl/tk, i don´t know why but when I create it I can send and recieve just one time, then it returns me a message "broken pipe". I am using "set pipe [open |....]

Thank You

jwbec
 
Hmm.. May this URL help you: ?

On my Win2k box I get no error with:
Code:
  set fp [open |[list ls -l]]
  puts [read $fp]
  puts [read $fp]

HTH

ulis
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top