How do I get the exit code of command and not xterm?

孤人 提交于 2019-12-29 00:07:26

问题


If I call a command (in my case another script) with xterm like so:

xterm -e sh second.sh

The value in $? after xterm returns is the exit status code of xterm (usually for me 0) and not my script.

Is there anyway to get the exit status code of my script?


回答1:


You could do something like this:

statusfile=$(mktemp)
xterm -e sh -c 'yourcommand; echo $? > '$statusfile
status=$(cat $statusfile)
rm $statusfile

The exit status of yourcommand is now in variable status.



来源:https://stackoverflow.com/questions/8416596/how-do-i-get-the-exit-code-of-command-and-not-xterm

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!