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

20.16 20.17shell中的函数(上下);20.18 shell中的数组;20.19 告警系统需求分析

时间:2017-09-18 18:17:28      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:shell中的函数

20.16 shell中的函数(上)

函数就是把一段代码整理到了一个小单元中,并给这个小单元起

一个名字,当用到这段代码时直接调用这个小单元的名字即可。

1.

[root@hao-01 ~]# vi fun1.sh

添加内容:

#!/bin/bash

function inp(){

echo "The first par is $1"

echo "The second par is $2"

echo "The third par is $3"

echo "the scritp name is $0"

echo "the number of par is $#"

}


inp $1 $2 $3

2. 执行fun1.sh脚本,后面跟函数

[root@hao-01 ~]# sh fun1.sh 1

20.17 shell中的函数(下)

1. 加法函数

[root@hao-01 ~]# vi fun2.sh

添加内容:

#!/bin/bash

sum() {

s=$[$1+$2]

echo $s

}


sum 1 10

2. 执行fun2.sh脚本:

[root@hao-01 ~]# sh -x fun2.sh

1. 输入网卡名字,显示网卡ip

[root@hao-01 ~]# vi fun3.sh

添加内容:

#!/bin/bash

ip()

{

ifconfig |grep -A1 "$1: "|awk ‘/inet/ {print $2}‘

}


read -p "please input the eth name: " ech

ip $eth

2. 执行fun3.sh脚本:

[root@hao-01 ~]# sh fun3.sh

please input the eth name: ens33

技术分享

技术分享

20.18 shell中的数组

1. 定义数组

[root@hao-01 ~]# a=(1 2 3 4 5)

2. 查看a数组元素

[root@hao-01 ~]# echo ${a[*]}

技术分享

技术分享3. 查看数组某个元素(数组从0开始值为1):

[root@hao-01 ~]# echo ${a[1]}

技术分享

4. 获取数组元素 个数

[root@hao-01 ~]# echo ${#a[*]}

技术分享

5. 如果下标不存在则会自动添加一个元素:

[root@hao-01 ~]# a[5]=b

[root@hao-01 ~]# echo ${a[*]}

技术分享

数组元素赋值(更改替换):

[root@hao-01 ~]# a[5]=bbb

[root@hao-01 ~]# echo ${a[*]}

技术分享

6. 删除数组元素:

技术分享

技术分享7. 删除(清空)数组值

[root@hao-01 ~]# unset a

[root@hao-01 ~]# echo ${a[*]}

技术分享

8. 设定数组:

[root@hao-01 ~]# a=(`seq 1 10`)

[root@hao-01 ~]# echo ${a[*]}

技术分享

9. 从第1元素开始,截取出5数值

[root@hao-01 ~]# echo ${a[*]:0:5}

技术分享

从第2元素开始,截取出5数值

[root@hao-01 ~]# echo ${a[*]:1:5}

技术分享

10. 倒数第3元素开始,截取出2数值

[root@hao-01 ~]# echo ${a[*]:0-3:2}

技术分享

11. 截取替换,8元素打印成cc66

[root@hao-01 ~]# echo ${a[@]/8/cc66}

技术分享

12. 替换元素值8元素替换成cc66

[root@hao-01 ~]# a=(${a[*]/8/cc66})

[root@hao-01 ~]# echo ${a[*]}

技术分享

替换元素值cc66元素替换成888

[root@hao-01 ~]# a=(${a[*]/cc66/888})

[root@hao-01 ~]# echo ${a[*]}

技术分享

20.19 告警系统需求分析

1. 需求:使用shell定制各种个性化告警工具,但需要统一化管理、规范化管理。

2. 思路:指定一个脚本包,包含主程序、子程序、配置文件、邮件引擎、输出日志等。

3. 主程序:作为整个脚本的入口,是整个系统的命脉。

4. 配置文件:是一个控制中心,用它来开关各个子程序,指定各个相关联的日志文件。

5. 子程序:这个才是真正的监控脚本,用来监控各个指标。

6. 邮件引擎:是由一个python程序来实现,它可以定义发邮件的服务器、发邮件人以及发件人密码

7. 输出日志:整个监控系统要有日志输出。

本文出自 “主内安详” 博客,请务必保留此出处http://zhuneianxiang.blog.51cto.com/11621252/1966376

20.16 20.17shell中的函数(上下);20.18 shell中的数组;20.19 告警系统需求分析

标签:shell中的函数

原文地址:http://zhuneianxiang.blog.51cto.com/11621252/1966376

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