shell脚本中调用(c程序,shell函数,shell命令)获取程序返回值

=================================
1、shell脚本中调用shell脚本中的函数,获取shell函数调用的返回值:

#!/bin/sh   
  
enjoy()    
{    
   。。。
} 




res=`enjoy`  
echo "state: "$?  
echo "res: "${res}  

说明:res=enjoy这一行为调用函数enjoy,里面的符合`不是单引号,而是Esc按键下面的那个,另外$?返回的为上一条命令的执行状态,不是返回值;

2、shell脚本中执行shell命令,获取shell命令的返回值:

#!/bin/sh    
enjoy=`cat my.sh`   
echo "enjoy: "${enjoy}  

3、shell脚本中执行应用程序,获取应用程序运行后的返回值:
gcc test.c test

#!/bin/bash
./test
RETURN=$?
echo $RETURN
返回值为66

你可能感兴趣的:(shell脚本)