31

Let's imagine I have a bash script, where I call this:

bash -c "some_command"
do something with code of some_command here

Is it possible to obtain the code of some_command? I'm not executing some_command directly in the shell running the script because I don't want to alter it's environment.

4

3 回答 3

34

$?将包含与some_command往常一样的返回码。

当然,它也可能包含来自 bash 的代码,以防在您的命令甚至可以执行之前出现问题(错误的文件名,诸如此类)。

于 2010-03-31T20:09:43.823 回答
33

这是PaggasMatti$?提到的括号子shell的插图:

$ (exit a); echo $?
-bash: exit: a: numeric argument required
255
$ (exit 33); echo $?
33

在第一种情况下,代码是 Bash 错误,在第二种情况下,它是exit.

于 2010-03-31T22:05:57.463 回答
7

您可以使用该$?变量,查看 bash 文档,它存储了最后一个命令的退出状态。

此外,您可能想查看 bash 的括号式命令块(例如comm1 && (comm2 || comm3) && comm4),它们始终在子 shell 中执行,因此不会改变当前环境,并且功能也更强大!

编辑:例如,与 bash -c 'command' 相比,使用 () 样式的块时,您不必担心使用空格或任何其他特殊的 shell 语法转义任何参数字符串。您直接使用 shell 语法,它是其余代码的正常部分。

于 2010-03-31T20:10:10.017 回答