Forum OpenACS Q&A: Response to tcl question

Collapse
2: Response to tcl question (response to 1)
Posted by Nick Carroll on
Or should I use the get_chunk method as follows...

<pre>
set chunkhandle [ open {get_chunk} r]
while { [gets chunkhandle line] >= 0 } {
    #process line
}
</pre>