$"htmlcode">
#!/bin/bash if [ "$1" == 100 ] then exit 0 #参数正确,退出状态为0 else exit 1 #参数错误,退出状态1 fi
exit表示退出当前 Shell 进程,我们必须在新进程中运行 test.sh,否则当前 Shell 会话(终端窗口)会被关闭,我们就无法取得它的退出状态了。
例如,运行 test.sh 时传递参数 100:
[mozhiyan@localhost ~]$ cd demo [mozhiyan@localhost demo]$ bash ./test.sh 100 #作为一个新进程运行 [mozhiyan@localhost demo]$ echo $"htmlcode">[mozhiyan@localhost demo]$ bash ./test.sh 89 #作为一个新进程运行 [mozhiyan@localhost demo]$ echo $"htmlcode">#!/bin/bash #得到两个数相加的和 function add(){ return `expr $1 + $2` } add 23 50 #调用函数 echo $? #获取函数返回值运行结果:
73有 C++、C#、Java 等编程经验的读者请注意:严格来说,Shell 函数中的 return 关键字用来表示函数的退出状态,而不是函数的返回值;Shell 不像其它编程语言,没有专门处理返回值的关键字。