oobgexec1 0.1
출처: https://wiki.tcl-lang.org/page/Matthias+Hoffmann+-+Tcl-Code-Snippets+-+Misc+-+Bgexec TclOO를 이용한 백그라운드 실행중 stdout을 캡쳐하는 클래스입니다.package require TclOOpackage require Tcl 8.5package provide oobgexec1 0.1oo::class create bgExec { self variable objNr self method nextObjNr {} {incr objNr} self method activeObjects {} {info class instances bgExec} self method activeObject..