linux中脚本退出码126,exit(-1)或者return(-1)shell得到的退出码为什么是255
下面我写了一个hello world程序,一起看看吧:// filename: main.c#include int main(void){printf("hello wolrd!\n");return(-);}编译执行:gcc main.c && ./a.out现在我们看看在当前shell中返回上一个执行过程的返回值是多少,是 “-1” 吗?hello world!255啊,结果...