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

2021-06-22 08:06

阅读:339

标签:字符串   技术分享   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


评论


亲,登录后才可以留言!