1. 程式人生 > >shell腳本--循環結構

shell腳本--循環結構

blog 結果 gpo don style bin ont 多個 str

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腳本--循環結構