增加 Linux 中在终端捕获程序的返回值.

Signed-off-by: rick.chan <chenyang@autoai.com>
This commit is contained in:
rick.chan 2020-09-28 20:36:27 +08:00
parent 423ae8f2c0
commit ba1c5aa4f7
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# Linux 中在终端捕获程序的返回值
在程序运行结束后在终端shell 界面)上输入命令:
```bash
echo $?
```
显示的即为上一个程序结束时的返回值return 1exit2_exit12都可以abort 退出时,返回值为随机数)。
功能:可以判断上一个程序时在什么情况下结束的。正常情况下,返回值为 0 即为正常退出;为 1 或 -1 为错误终止退出,也可以自己设置值。