增加 Linux 中在终端捕获程序的返回值.
Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
parent
423ae8f2c0
commit
ba1c5aa4f7
|
@ -0,0 +1,11 @@
|
|||
# Linux 中在终端捕获程序的返回值
|
||||
|
||||
在程序运行结束后,在终端(shell 界面)上输入命令:
|
||||
|
||||
```bash
|
||||
echo $?
|
||||
```
|
||||
|
||||
显示的即为上一个程序结束时的返回值(return 1,exit(2),_exit(12)都可以,abort 退出时,返回值为随机数)。
|
||||
|
||||
功能:可以判断上一个程序时在什么情况下结束的。正常情况下,返回值为 0 即为正常退出;为 1 或 -1 为错误终止退出,也可以自己设置值。
|
Loading…
Reference in New Issue