set cmd "" while 1 { if { "$cmd" != "" } { # Why "format catch"? It "is a legacy workaround # for an old bytcode compiler bug." We should # find out when it's fixed, and "package require # Tcl ..." appropriately. catch {[format catch] $::tcl_prompt2} } else { if {[catch {[format catch] $::tcl_prompt1}]} { puts -nonewline "% " } } flush stdout append cmd \n[gets stdin] if [ info complete $cmd ] { catch $cmd res puts $res set cmd "" } }Other improvements that could still be made:
- avoid using global variables cmd and res
- properly handle scripts that return codes other than 0 (TCL_OK) or 1 (TCL_ERROR) (for example, [break])
Note that the code above is best understood as an improvement on the implementation developed in this Usenet thread: http://groups.google.com/groups?hl=en&th=79c056a40deb476d&rnum=4

Simple example: from stdio to variableInstead, this is simple example may be useful for newbies (like myself, GV). This reads multiple lines from the standard input (stdin) and keeps all the lines in a variable. Last input line must be a dot (".").
set n 0 while {$n<3000} { gets stdin row puts $row if { [string equal $row "."] } { break }; append message $row "\n" } puts "---------" puts $message