码迷,mamicode.com
首页 > 编程语言 > 详细

shell中的函数、shell中的数组、告警系统需求分析

时间:2018-09-20 12:29:03      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:字符串   技术分享   type   数组   51cto   col   proc   ges   alt   

shell中的函数

技术分享图片

示例1打印你的参数

技术分享图片

技术分享图片

示例2定义一个加法函数

技术分享图片

技术分享图片

示例3显示IP的函数

技术分享图片

技术分享图片

shell中的数组

技术分享图片

数组就是字符串,一串数字,它形成了一个变量,变量叫做数组
取数组的值。

定义数组

[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

告警系统需求分析

技术分享图片

shell中的函数、shell中的数组、告警系统需求分析

标签:字符串   技术分享   type   数组   51cto   col   proc   ges   alt   

原文地址:http://blog.51cto.com/8043410/2177438

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