本文共 341 字,大约阅读时间需要 1 分钟。
示例1打印你的参数
示例2定义一个加法函数
示例3显示IP的函数
数组就是字符串,一串数字,它形成了一个变量,变量叫做数组取数组的值。
定义数组
[root@100xuni1 shell]# b=(1 2 3) ##定义数组[root@100xuni1 shell]# echo ${b[@]} ##打印数组也可以把@符号改成*号1 2 3
查看其中某一个元素的值
[root@100xuni1 shell]# echo ${b[1]}2[root@100xuni1 shell]# echo ${b[2]}3
转载于:https://blog.51cto.com/8043410/2177438