码迷,mamicode.com
首页 > 系统相关 > 详细

shell 函数

时间:2018-12-28 13:31:39      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:NPU   param   形式   style   获取参数   hpa   使用   not   命令   

只举三个例子,不带返回值的,带返回值的和传递参数的,由此就可以知道在shell中如何使用函数。

一、没有返回值

demoFun() {
 echo "this is a function"   
}

调用
echo "----------"
demoFun
echo -----------

结果:
--------
this is a function
--------

 

二、带返回值

若不加return语句,将以最后一条命令的运行结果作为返回值。

funWithReturn() {
 read aNum
 read anotherNum
 return $(($aNum+$anotherNum))   
}

echo "input: "
funWithReturn
echo "value is: $?" #函数返回值在调用该函数后通过$?来获得。

所有函数在使用前必须定义,必须将函数放在脚本开始部分,直至shell解释器发现,才可以使用。

 

三、传递参数

在函数内部通过$n的形式获取参数的值,$1为第一个参数,$2为第二个参数。

funWithParam() {
 echo "first $1"
 echo "second $2"
 echo "third $3"
 echo "tenth ${10}"   #当n>=10时,需要通过${n}来获取参数。
}
调用:
funWithParam 1 2 3 4 5 6

 

shell 函数

标签:NPU   param   形式   style   获取参数   hpa   使用   not   命令   

原文地址:https://www.cnblogs.com/sssblog/p/10189790.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!