我有一个 tcl 脚本。
问题是我必须调用一个可以向 stderr 写入内容的脚本(这不是严重失败)。
我想在 tk/tcl 中分别捕获标准错误和标准输出。
if { [catch {exec "./script.sh" << $data } result] } {
puts "$::errorInfo"
}
此代码将返回我的结果,但它也包含标准错误。
我也想得到一个变量的结果。
提前致谢...
如果您将命令作为管道打开而不是使用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}"
使用 2> 重定向标准错误:
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"