shell脚本中如何 调用c程序取返回值

2024年11月17日 21:41
有3个网友回答
网友(1):

能实现的。

网友(2):

在bash shell中 $? 既为上一次调用程序的返回值

网友(3):

  示意流程如下:
return_code = system("shell command") ;
if (return_code == 1)
do something ;
else if (return_code == 2)
do something ;
else
do something ;