물론 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'"
'Tcl & Tk > 팁 (Tip)' 카테고리의 다른 글
Tcl로 구현한 텔넷 서버 (0) | 2025.03.26 |
---|---|
텍스트 위젯 라인 넘버 및 Wrap 이미지 보여주기 (0) | 2025.03.26 |
C로 만드는 base64 디코드 커맨드 (0) | 2025.03.26 |
try/catch/finally 커맨드 (0) | 2025.03.26 |
특정 주기로 실행하는 every 커맨드 (0) | 2025.03.26 |