note_13.6_shell循环

循环执行:for, while, until

  • for循环格式:
    for VARAIBLE in LIST; do
    循环体
    done

  • while循环:
    while CONDITION; do
    循环体
    done

  • until循环:
    until CONDITION; do
    循环体
    done

    进入条件:CONDITION测试为”假“
    退出条件:CONDITION测试为”真“


练习:

分别使用for, while, until实现
1、分别求100以内所有偶数之和,100以内所奇数之和;

[root@localhost scripts]# ./e13_6_1.sh 
for loop : oddsum 2500 , evensum 2550
while loop : oddsum 2500 , evensum 2550
until loop : oddsum 2500 , evensum 2550
[root@localhost scripts]# cat e13_6_1.sh 
#!/bin/bash
declare -i sum4for=0 sum4while=0 sum4until=0
for i in {1..100};do
    if [ $[$i%2] -eq 1 ];then
        let sum4for+=$i
    fi
done
echo "for loop : oddsum $sum4for , evensum $[5050-$sum4for]"
let i=1
while [ $i -lt 100 ];do
    let sum4while+=i
    let i+=2
done
echo "while loop : oddsum $sum4while , evensum $[5050-$sum4while]"
let i=1
until [ $i -gt 100 ];do
    let sum4until+=i
    let i+=2
done
echo "until loop : oddsum $sum4until , evensum $[5050-$sum4until]"

2、创建10个用户,user101-user110;密码同用户名;

[root@localhost scripts]# bash ./e13_6_2.sh 
id: user101: no such user
id: user102: no such user
id: user103: no such user
id: user104: no such user
id: user105: no such user
id: user106: no such user
id: user107: no such user
id: user108: no such user
id: user109: no such user
id: user110: no such user
uid=4007(user101) gid=4007(user101) groups=4007(user101)
uid=4008(user102) gid=4008(user102) groups=4008(user102)
uid=4009(user103) gid=4009(user103) groups=4009(user103)
uid=4010(user104) gid=4010(user104) groups=4010(user104)
uid=4011(user105) gid=4011(user105) groups=4011(user105)
uid=4012(user106) gid=4012(user106) groups=4012(user106)
uid=4013(user107) gid=4013(user107) groups=4013(user107)
uid=4014(user108) gid=4014(user108) groups=4014(user108)
uid=4015(user109) gid=4015(user109) groups=4015(user109)
uid=4016(user110) gid=4016(user110) groups=4016(user110)
uid=4007(user101) gid=4007(user101) groups=4007(user101)
uid=4008(user102) gid=4008(user102) groups=4008(user102)
uid=4009(user103) gid=4009(user103) groups=4009(user103)
uid=4010(user104) gid=4010(user104) groups=4010(user104)
uid=4011(user105) gid=4011(user105) groups=4011(user105)
uid=4012(user106) gid=4012(user106) groups=4012(user106)
uid=4013(user107) gid=4013(user107) groups=4013(user107)
uid=4014(user108) gid=4014(user108) groups=4014(user108)
uid=4015(user109) gid=4015(user109) groups=4015(user109)
uid=4016(user110) gid=4016(user110) groups=4016(user110)
[root@localhost scripts]# cat ./e13_6_2.sh
#!/bin/bash
declare -i i=0
for i in {101..110};do
    id user$i || useradd -p user$i user$i
done
i=100
while [ $i -lt 110 ];do
    let i+=1
    id user$i || useradd -p user$i user$i
done
i=100
until [ $i -ge 110 ];do
    let i+=1
    id user$i || useradd -p user$i user$i
done
[root@localhost scripts]# bash ./e13_userdel.sh 
[root@localhost scripts]# cat ./e13_userdel.sh
#!/bin/bash
for i in `grep -o 'user[0-9]\+' /etc/passwd | uniq`;do
    userdel -r $i
done

3、打印九九乘法表;

[root@localhost scripts]# bash e13_6_3.sh
for loop print:
1x1=1   
1x2=2   2x2=4   
1x3=3   2x3=6   3x3=9   
1x4=4   2x4=8   3x4=12  4x4=16  
1x5=5   2x5=10  3x5=15  4x5=20  5x5=25  
1x6=6   2x6=12  3x6=18  4x6=24  5x6=30  6x6=36  
1x7=7   2x7=14  3x7=21  4x7=28  5x7=35  6x7=42  7x7=49  
1x8=8   2x8=16  3x8=24  4x8=32  5x8=40  6x8=48  7x8=56  8x8=64  
1x9=9   2x9=18  3x9=27  4x9=36  5x9=45  6x9=54  7x9=63  8x9=72  9x9=81  

while loop print:
1x1=1   
1x2=2   2x2=4   
1x3=3   2x3=6   3x3=9   
1x4=4   2x4=8   3x4=12  4x4=16  
1x5=5   2x5=10  3x5=15  4x5=20  5x5=25  
1x6=6   2x6=12  3x6=18  4x6=24  5x6=30  6x6=36  
1x7=7   2x7=14  3x7=21  4x7=28  5x7=35  6x7=42  7x7=49  
1x8=8   2x8=16  3x8=24  4x8=32  5x8=40  6x8=48  7x8=56  8x8=64  
1x9=9   2x9=18  3x9=27  4x9=36  5x9=45  6x9=54  7x9=63  8x9=72  9x9=81  

until loop print:
1x1=1   
1x2=2   2x2=4   
1x3=3   2x3=6   3x3=9   
1x4=4   2x4=8   3x4=12  4x4=16  
1x5=5   2x5=10  3x5=15  4x5=20  5x5=25  
1x6=6   2x6=12  3x6=18  4x6=24  5x6=30  6x6=36  
1x7=7   2x7=14  3x7=21  4x7=28  5x7=35  6x7=42  7x7=49  
1x8=8   2x8=16  3x8=24  4x8=32  5x8=40  6x8=48  7x8=56  8x8=64  
1x9=9   2x9=18  3x9=27  4x9=36  5x9=45  6x9=54  7x9=63  8x9=72  9x9=81  
[root@localhost scripts]# cat e13_6_3.sh
#!/bin/bash
declare -i r=0 l=0
echo "for loop print:"
for i in {1..9};do
    for j in `seq 1 $i`;do
        echo -en "${j}x${i}=$[$i*$j]\t"
    done
    echo
done
echo -e "\nwhile loop print:"
let r=1
let l=1
while [ $r -lt 10 ];do
    while [ $l -le $r ];do
        echo -ne "${l}x${r}=$[$r*$l]\t"
        let l+=1
    done
    echo
    let l=1
    let r+=1
done
let r=1
let l=1
echo -e "\nuntil loop print:"
until [ $r -ge 10 ];do
    until [ $l -gt $r ];do
        echo -ne "${l}x${r}=$[$r*$l]\t"
        let l+=1
    done
    echo
    let l=1
    let r+=1
done

4、打印逆序的九九乘法表;

[root@localhost scripts]# bash e13_6_4.sh
for loop print:
1x9=9   2x9=18  3x9=27  4x9=36  5x9=45  6x9=54  7x9=63  8x9=72  9x9=81  
1x8=8   2x8=16  3x8=24  4x8=32  5x8=40  6x8=48  7x8=56  8x8=64  
1x7=7   2x7=14  3x7=21  4x7=28  5x7=35  6x7=42  7x7=49  
1x6=6   2x6=12  3x6=18  4x6=24  5x6=30  6x6=36  
1x5=5   2x5=10  3x5=15  4x5=20  5x5=25  
1x4=4   2x4=8   3x4=12  4x4=16  
1x3=3   2x3=6   3x3=9   
1x2=2   2x2=4   
1x1=1   

while loop print:
1x9=9   2x9=18  3x9=27  4x9=36  5x9=45  6x9=54  7x9=63  8x9=72  9x9=81  
1x8=8   2x8=16  3x8=24  4x8=32  5x8=40  6x8=48  7x8=56  8x8=64  
1x7=7   2x7=14  3x7=21  4x7=28  5x7=35  6x7=42  7x7=49  
1x6=6   2x6=12  3x6=18  4x6=24  5x6=30  6x6=36  
1x5=5   2x5=10  3x5=15  4x5=20  5x5=25  
1x4=4   2x4=8   3x4=12  4x4=16  
1x3=3   2x3=6   3x3=9   
1x2=2   2x2=4   
1x1=1   

until loop print:
1x9=9   2x9=18  3x9=27  4x9=36  5x9=45  6x9=54  7x9=63  8x9=72  9x9=81  
1x8=8   2x8=16  3x8=24  4x8=32  5x8=40  6x8=48  7x8=56  8x8=64  
1x7=7   2x7=14  3x7=21  4x7=28  5x7=35  6x7=42  7x7=49  
1x6=6   2x6=12  3x6=18  4x6=24  5x6=30  6x6=36  
1x5=5   2x5=10  3x5=15  4x5=20  5x5=25  
1x4=4   2x4=8   3x4=12  4x4=16  
1x3=3   2x3=6   3x3=9   
1x2=2   2x2=4   
1x1=1   
[root@localhost scripts]# cat e13_6_4.sh
#!/bin/bash
declare -i r=0 l=0
echo "for loop print:"
for i in `seq 9 -1 1`;do
    for j in `seq 1 $i`;do
        echo -en "${j}x${i}=$[$i*$j]\t"
    done
    echo
done
echo -e "\nwhile loop print:"
let r=9
let l=1
while [ $r -ge 1 ];do
    while [ $l -le $r ];do
        echo -ne "${l}x${r}=$[$r*$l]\t"
        let l+=1
    done
    echo
    let l=1
    let r-=1
done
let r=9
let l=1
echo -e "\nuntil loop print:"
until [ $r -lt 1 ];do
    until [ $l -gt $r ];do
        echo -ne "${l}x${r}=$[$r*$l]\t"
        let l+=1
    done
    echo
    let l=1
    let r-=1
done
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,723评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,485评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,998评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,323评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,355评论 5 374
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,079评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,389评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,019评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,519评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,971评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,100评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,738评论 4 324
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,293评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,289评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,517评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,547评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,834评论 2 345

推荐阅读更多精彩内容