- 1、本文档共8页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Linux Shell 编程一
Linux Shell 编程一
一. 变量,数组
二. if, while, until, for, case,
三. function
四. test, [], (()), [[]], ``, $()
五. |, , stdin stdout stderr
六.正则
脚本示例
#!/bin/bash
# ========================================================================================
# RAID health plugin for Nagios
#
# Written by : Roland
# Release : 1.0.0
# Creation date : 2010-06-10
# Revision date : 2010-06-10
# Description : Nagios plugin (script) to check RAID health .
# This script has been designed and written on Linux System.
#
# USAGE : ./check_raid_health.sh [-d (raid num)]
#
# Exemple: ./check_raid_stats.sh
# ./check_raid_stats.sh -d raid1
#
#
# HISTORY :
# Release | Date | Authors | Description
# +++
# 1.0.0 | 2010-06-10 | Roland | Create the script
#
# NOTICE:
#
# You should have the root Permissions ,You can use sudo to realize .
#
# Nagios return codes
# 定义 nagios返回的状态变量
STATE_OK=0
STATE_WARNING=1
STATE_CRITICAL=2
STATE_UNKNOWN=3
# Paths to commands used in this script. These may have to be modified to match your system setup.
# 定义关键的核心命令MegaCli 路径。
#MEAGCLI=/root/MegaCli -AdpAllInfo -aALL |egrep Degrade|Failed Disks|Offline|egrep -v No|Yes
# Plugin parameters value if not define
# 定义默认的检测RAID
CHECK_RAID=raid1
# Plugin variable description
# 插件定义此插件脚本的描述信息
PROGNAME=$(basename $0)
RELEASE=Revision 1.0.0
AUTHOR=(c) 2010 Roland (Rolandqu@)
# Functions plugin usage
# 插件的使用方法函数
print_release() {
echo $RELEASE $AUTHOR
}
print_usage() {
echo
echo $PROGNAME $RELEASE - RAID health check script for Nagios
echo
echo Usage: check_raid_health.sh -d raid1
echo
echo -d the RAID (raid num)
echo -v check the version
echo -h Show this page
echo
echo Usage: $PROGNAME
echo Usage: $PROGNAME --help
echo
exit 0
}
文档评论(0)