본문으로 바로가기

popen 구현 하기

category Tcl & Tk/팁 (Tip) 2025. 3. 26. 16:36

물론 bgexec 패키지를 이용하면 되겠지만, 직접 아래와 같이 커맨드 기반 프로그램의 stdout을 캡처할 수 있습니다.

namespace eval subprocess {

# this will be set to 1 when the subprocess has finished
variable finished 0

# here we can save the output of the subprocess
variable output {}
}

proc subprocess::handledata {f} {
    variable finished
    variable output
    if {[eof $f]} {
        set finished 1
    } else {
        set x [read $f]
        puts -nonewline $x
        append output $x
    }
}

proc subprocess::handledata run {cmd} {
    variable finished
    set finished 0
    variable output
    set output {}

    fconfigure stdout -buffering none
    set f [open |$cmd]

    # -buffering none ensures we can read output char by char, instead of line by line
   # line by line reading may require -translation to be set
    fconfigure $f -buffering none -blocking 0

    fileevent $f readable [list [namespace current]::handledata $f]
   # vwait waits for the named variable to change
    vwait [namespace current]::finished
    close $f
}

set cmd ./try.sh

puts "Opening $cmd"
::subprocess::run $cmd
puts "Finished! Output was '$::subprocess::output'"