RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
Shell循环语句:if

[root@master1-192-168-117-18 ~]# vim mkcdrom.sh

创新互联建站坚持“要么做到,要么别承诺”的工作理念,服务领域包括:成都网站建设、网站建设、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的龙沙网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!

#!/bin/bash
DIR="/media/cdrom"
if [ ! -e $DIR ]
then
mkdir -p $DIR
fi


[root@master1-192-168-117-18 ~]# vim chkhost.sh
#!/bin/bash

ping -c 3 -i 0.2 -W 3 $1 &> /dev/null
if [ $? -eq 0 ]
then
echo "Host $1 is on-line"
else
echo "Host $1 is off-line"
fi

[root@master1-192-168-117-18 ~]# bash chkhost.sh 192.168.1.11
Host 192.168.1.11 is on-line

注释:-c参数来规定尝试的次数,并使用-i参数定义每个数据包的发送间隔,以及使用-W参数定义等待超时时间


[root@master1-192-168-117-18 ~]# vim chkscore.sh
#!/bin/bash
read -p "Enter your score (0-100) :" GRADE
if [ $GRADE -gt 100 ];
then
echo "$GRADE is Error"
elif [ $GRADE -ge 85 ] && [ $GRADE -le 100 ];
then
echo "$GRADE is Excellent"
elif [ $GRADE -ge 70 ] && [ $GRADE -le 84 ];
then
echo "$GRADE is Pass"
else
echo "$GRADE is Fail"
fi
[root@master1-192-168-117-18 ~]# bash chkscore.sh
Enter your score (0-100) :200
200 is Error
[root@master1-192-168-117-18 ~]# bash chkscore.sh
Enter your score (0-100) :93
93 is Excellent
[root@master1-192-168-117-18 ~]# bash chkscore.sh
Enter your score (0-100) :80
80 is Pass
[root@master1-192-168-117-18 ~]# bash chkscore.sh
Enter your score (0-100) :23
23 is Fail


当前名称:Shell循环语句:if
URL地址:http://scyingshan.cn/article/pdeghd.html