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

shell脚本--循环结构

时间:2018-01-13 15:45:07      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:color   style   span   highlight   两种   运行   bsp   文件   echo   

shell的循环结构有while和for两种

while循环

while后面跟着判断条件,判断条件可以为多个,但是每一个判断条件都要是用单独的 [  ]括起来,然后多个判断之间使用 &&、||来表示含义。

例子:

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

tot=0
num=10
while [ $num -gt 0 ]
do
    tot=$(($tot + $num))
    num=$(($num - 1))
done
    echo "总和为"$tot

  运行结果如下:

ubuntu@ubuntu:~$ ./test.sh
总和为55
ubuntu@ubuntu:~$ 

  

shell脚本--循环结构

标签:color   style   span   highlight   两种   运行   bsp   文件   echo   

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

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