从tcl脚本调用bash脚本并返回并退出状态

前端之家收集整理的这篇文章主要介绍了从tcl脚本调用bash脚本并返回并退出状态前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图从TCL脚本调用bash脚本,并需要从bash脚本获取退出状态,或者至少将某些内容传回TCL脚本,以便我可以判断我的脚本是否成功执行.有什么建议?
请参阅 http://wiki.tcl.tk/exec – 单击“显示讨论”按钮 – 这是一个非常详细的示例,说明如何完全按照您的要求进行操作.你需要的是捕获
set status [catch {exec script.bash} output]

if {$status == 0} {
    puts "script exited normally (exit status 0) and wrote nothing to stderr"
} elseif {$::errorCode eq "NONE"} {
    puts "script exited normally (exit status 0) but wrote something to stderr which is in $output"
} elseif {[lindex $::errorCode 0] eq "CHILDSTATUS"} {
    puts "script exited with status [lindex $::errorCode end]."
} else ...
原文链接:https://www.f2er.com/bash/383421.html

猜你在找的Bash相关文章