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

shell脚本--continue、break

时间:2018-01-13 18:57:58      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:使用方法   gpo   语言   done   blog   shell   文件名   shel   ash   

shell中的continue和break和其他语言中的使用方法一模一样:continue用于跳过本次循环,break用于中断本层的循环

下面是使用例子:

#!/bin/bash
#文件名:test.sh

for i in 1 2 3 4 5 6 7 8 9
do
    if [ $i -eq 4 ]
    then
        continue
    else
        echo $i
    fi

    if [ $i -eq 6 ]
    then 
        break
    fi
done

  运行:

ubuntu@ubuntu:~$ ./test.sh
1
2
3
5
6
ubuntu@ubuntu:~$ 

  

shell脚本--continue、break

标签:使用方法   gpo   语言   done   blog   shell   文件名   shel   ash   

原文地址:https://www.cnblogs.com/-beyond/p/8279653.html

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