码迷,mamicode.com
首页 > 系统相关 > 详细

shell脚本编程学习笔记-while循环

时间:2018-04-12 23:32:33      阅读:876      评论:0      收藏:0      [点我收藏+]

标签:linux   shell   

1.当型循环和直到型循环

While使用的不多,一般守护进程程序或始终循环执行会用,其他循环运算都用for代替。

1.1 当型和直到型循环语法

(1)while条件语句

语法:

While 条件

do

指令….

done

手机充值:发短信扣费,充值100,每次扣1角5,当费用低于1角5分就不能发了。

(2)until条件语句

语法:

until 条件

do

指令…

Done

提示:只循环一次,应用场景不多,了解就好。

1.2 当型和直到型循环基本范例

休息命令:sleep休息1秒,usleep1000000休息1秒。达到一分钟就用定时任务。

1.2.1 范例1:每隔2秒记录一次系统负载情况

方法一:每隔2秒屏幕输出负载值

[root@shellbiancheng jiaobenlianxi]# cat while1.sh 
#!/bin/sh
while true
   do
    uptime
    sleep 2
   done

提示:while true 表示条件永远为真,因此会一直执行,像死循环一样,我们称之为守护进程。

[root@shellbiancheng jiaobenlianxi]# sh while1.sh 
 02:50:13 up 1 day, 11:47,  3 users,  load average: 0.00, 0.00, 0.00
 02:50:15 up 1 day, 11:47,  3 users,  load average: 0.00, 0.00, 0.00

方法二:追加到log日志文件里

[root@shellbiancheng jiaobenlianxi]# cat while2.sh 
#!/bin/sh
while [ 1 ]
   do
    uptime >>./uptime.log
    sleep 2
   done

提示:

[root@shellbiancheng jiaobenlianxi]# sh while2.sh &

[1] 3991

在后台永久执行,我们称之为守护进程模式。

[root@shellbiancheng jiaobenlianxi]# tail -f uptime.log 
 03:00:24 up 1 day, 11:57,  3 users,  load average: 0.01, 0.01, 0.00
 03:00:26 up 1 day, 11:57,  3 users,  load average: 0.01, 0.01, 0.00

防止客户端执行脚本中断的方法

(1)sh while2.sh & 加&符号

(2)nohup while2.sh &

(3)screen 保持会话

1.2.2 脚本在后台执行知识扩展

技术分享图片

扩展资料:

bg: 后台运行

fg: 挂起程序

jobs: 显示后台程序

kill,killall,pkill: 杀掉进程

crontab:设置定时

ps: 查看进程

pstree: 显示进程

nice: 改变优先级

nohup:用户退出系统之后继续工作

pgrep:查找匹配条件的进程

strace:跟踪一个进程的系统调用情况,如果在工作中某个进程使用率过高可以用strace查看进程系统调用情况,如果看不懂可以让开发去看。

Itrace:跟踪进程调用库函数的情况。

vmstat:报告虚拟内存统计信息。

1.3 简单范例

1.3.1 范例1:通过while语句计算从1加到100的和,请用1+2+3的方法

[root@shellbiancheng jiaobenlianxi]# cat 1-100.sh 
#!/bin/sh
sum=0
i=1
while [ $i -le 100 ]
do
 ((sum=sum+i))
 ((i++))
done
echo $sum

1.3.2 范例2:下面通过数学公式计算的结果

[root@shellbiancheng jiaobenlianxi]# cat sum1-100.sh 
#!/bin/sh
i=100
((sum=i*(i+1)/2))
echo $sum

更多实现1到100之和请大家阅读老男孩老师的博文。

http://blog.51cto.com/oldboy/767862

1.3.3 范例3:

手机充值10元,每发一次短信(输出当前余额)花费1角5分钱,当余额低于1角5分钱不能发短信,提示余额不足,请充值(可以允许用户继续充值继续发短信),请用while语句实现。

提示:单位换算,统一单位,统一成整数。10元=1000分,1角5分=15分

[root@shellbiancheng jiaobenlianxi]# cat huafei.sh 
#!/bin/bash
HUAFEI=100
YUE=25
if [ -f /etc/init.d/functions  ];then
    . /etc/init.d/functions
fi
OPTION() {
case "$option" in
    [yY]|[yY][eE][sS])
        echo "Send a success"
        echo $txt >>/var/log/consum.log
        ((HUAFEI=HUAFEI-YUE))
        echo "You‘re still saving money $HUAFEI"
        ;;
    [nN]|[nN][oO])
        echo "Abort send, succeed."
        ;;
        *)
        echo "Input error"
esac
    return 0
}

CHANGE1() {
    expr $change + 1 &>/dev/null
    if [ "$?" -ne "0" -a "$change" != "-1" ];then
        echo "There are illegal characters, please reenter the amount of recharge."
    else
    break
    fi
    return 0
}

CHANGE() {
while true
do
read -p "Please input the amount you want to recharge:" change
CHANGE1
done
return 0
}

CHANGE2() {

((HUAFEI+=change))
echo "You‘re still saving money $HUAFEI"

}

OPTION2() {
case "$option2" in
    [yY]|[yY][eE][sS])
        CHANGE
        CHANGE2
        ;;
    [nN]|[nN][oO])
        exit 1
        ;;
        *)
        echo "Input error, please enter the correct amount."
         CHANGE
     CHANGE2
esac
return 0
}

linzhongniao() {

if [ "$HUAFEI" -lt "$YUE" ];then
    read -p "The balance is insufficient, please recharge[y|n]" option2
    OPTION2
fi
return 0
}

main() {
while [ "$HUAFEI" -ge "$YUE" ]
do
read -p "Please enter the content of the text message:" txt
read -p "Confirm send [y|n]" option

OPTION
linzhongniao
done
return 0
}
main

1.4 扩展

While按行读文件的方式

1.4.1 方法一

[root@shellbiancheng jiaobenlianxi]# cat while_duwenjian1.sh 
#!/bin/bash

exec <nginx.sh
sum=0
while read line
do
    cmd
done

1.4.2 方法二

[root@shellbiancheng jiaobenlianxi]# cat while_duwenjian2.sh 
#!/bin/bash

cat ${FILE_PATH}|while read line
do
    cmd
done

1.4.3 方法三

[root@shellbiancheng jiaobenlianxi]# cat while_duwenjian3.sh 
#!/bin/bash
while read line
do
    cmd
done<FILE

1.4.4 问题分析apache日志例子

计算apache一天的日志access_2010-12-8.log中所有行的日志元素的访问字节数的总和。综合实现程序。练习日志:见目录下access_2012-12-8.log,也可以用自己的apache日志,请用while语句实现。

[root@shellbiancheng jiaobenlianxi]# cat while3.sh 
#!/bin/bash

exec < /etc/httpd/logs/access_log

while read line

do
    i=echo $line|awk ‘{print $10}‘
    expr $i + 1 &>/dev/null
    if [ $? -ne 0 ];then
    continue
    fi
    ((sum+=1))
done
[ -n "$sum" ] && echo $sum

2.While循环小结

a.While循环的特长是执行守护进程以及我们希望循环不退出持续执行的情况,用于频率小于一分钟循环处理(crond),其他的while循环几乎都可以被for循环替代。

b.case语句可以替换if语句,一般在系统启动脚本传入少量固定规则字符串,用case语句。其他普通判断多用if语句。

c.if和for语句最常用,其次是while(守护进程),case(服务启动脚本)。

各个语句的应用场景:

条件表达式,简单的判断(文件是否存在,字符串是否为空等)。

if取值判断,不同值数量较少的情况。

for正常的循环处理,最常用!

while守护进程、无限循环(sleep)。

case服务启动脚本,菜单。

函数逻辑清晰,减少重复语句。

shell脚本编程学习笔记-while循环

标签:linux   shell   

原文地址:http://blog.51cto.com/10642812/2097620

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