#!/bin/bash if [ "$1" == 100 ] then exit 0 #参数正确,退出状态为0 else exit 1 #参数错误,退出状态1 fi
exit
表示退出当前 Shell 进程,我们必须在新进程中运行 test.sh,否则当前 Shell 会话(终端窗口)会被关闭,我们就无法取得它的退出状态了。[mozhiyan@localhost ~]$ cd demo [mozhiyan@localhost demo]$ bash ./test.sh 100 #作为一个新进程运行 [mozhiyan@localhost demo]$ echo $? 0
[mozhiyan@localhost demo]$ bash ./test.sh 89 #作为一个新进程运行 [mozhiyan@localhost demo]$ echo $? 1
#!/bin/bash #得到两个数相加的和 function add(){ return `expr $1 + $2` } add 23 50 #调用函数 echo $? #获取函数返回值运行结果:
本文链接:http://task.lmcjl.com/news/6952.html