首页 > 代码库 > shell 函数
shell 函数
[root@OBird shell]# vim fun.sh
#!/bin/bash
function mysum() {
sum=$[$1+$2]
echo $sum
}
a=1
b=2
mysum $a $b
[root@OBird shell]# sh fun.sh
3
[root@OBird shell]# sh -x fun.sh
+ a=1
+ b=2
+ mysum 1 2
+ sum=3
+ echo 3
3
[root@OBird shell]# a=(1 2 3 4 5)
[root@OBird shell]# echo $a
1
[root@OBird shell]# echo ${a[@]}
1 2 3 4 5
[root@OBird shell]# echo ${a[4]} #输出其中一个元素
5
[root@OBird shell]# a[6]=8 #定义元素
[root@OBird shell]# a[2]=9 #更改元素
[root@OBird shell]# echo ${a[@]} #再次输出
1 2 9 4 5 8
[root@OBird shell]# echo ${#a[@]} #打印数组数量
6
本文出自 “CBO#Boy_Linux之路” 博客,请务必保留此出处http://20151213start.blog.51cto.com/9472657/1890756
shell 函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。