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

2024-11-17 21:41:42
推荐回答(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 ;