我有一个tcl脚本。
问题是我必须调用一个可以向stderr写入内容的脚本(这不是一个严重的失败)。
我想在tk / tcl中单独捕获stderr和stdout。
if { [catch {exec "./script.sh" << $data } result] } {
puts "$::errorInfo"
}
此代码将返回我的结果,但它也包含stderr。
此外,我想将结果变为变量。
提前致谢...
答案 0 :(得分:4)
如果您将命令作为管道而不是exec
打开,则可以将stdout和stderr分开。见http://wiki.tcl.tk/close
set data {here is some data}
set command {sh -c {
echo "to stdout"
read line
echo "$line"
echo >&2 "to stderr"
exit 42
}}
set pipe [open "| $command" w+]
puts $pipe $data
flush $pipe
set standard_output [read -nonewline $pipe]
set exit_status 0
if {[catch {close $pipe} standard_error] != 0} {
global errorCode
if {"CHILDSTATUS" == [lindex $errorCode 0]} {
set exit_status [lindex $errorCode 2]
}
}
puts "exit status is $exit_status"
puts "captured standard output: {$standard_output}"
puts "captured standard error: {$standard_error}"
答案 1 :(得分:2)
使用2&gt;重定向stderr:
if { [catch {exec "./script.sh" << $data 2> error.txt} result } {
puts "$::errorInfo"
}
然后您可以阅读error.txt的内容:
package require Tclx; # Needed for the read_file command
set err [read_file error.txt]
puts "s1: err = $err"