shell指令碼 迴圈的使用(for和while)

2021-09-29 05:30:49 字數 1156 閱讀 3980

迴圈往往使用兩種,for迴圈和while迴圈。

(1)for迴圈

#!/bin/bash

# for迴圈的使用方式

# 方式一

for i in $(seq 10)

do echo "hello$i"

done

# 方式二

for j in a b c d

do echo "world$j"

done

# 方式三

for ((k=1; $k<=10; k++))

do echo "create database analysis_$k"

sleep 1

done

(2)while迴圈

#!/bin/bash

# while迴圈的使用方式

# 方式一

i=1while [ $i -le 10 ]

do echo "while$i"

let i++

done

echo "------------------------------"

# 方式二

k=1while((k<=10))

do echo "while$k"

let k++

done

(3)while死迴圈

#!/bin/bash

# while死迴圈

while [ 1 ]

do echo "迴圈ing"

sleep 2

done

(4)迴圈案例

#!/bin/bash

# 迴圈案例

# 迴圈遍歷myfolder目錄下的所有html檔案,並列印檔名(不帶字尾)

cd /home/liuzhiwei/shell-test/myfolder

if [ $? -eq 0 ];then

for my_file in $(ls *.html)

doecho $(basename $my_file .html)

done

fi

shell指令碼 for迴圈

迴圈語句 while對於要求控制迴圈次數 操作物件按數字順序編號,按特定條件執行重複操作。重複測試某個條件時,只要條件成立就會反覆執行 無限 除非強制終止,或者exit語句退出指令碼 for迴圈語句 需要指定乙個變數以及可以取值的取值列表,針對每乙個不同的取值執行相同的命令序列,直到變數值用盡,退出...

shell指令碼 迴圈

迴圈有三種for,while,until,前兩種多種語言都有,大同小異,最後那種用的少,咱們就不說了 老規矩,上來先看 塊 root localhost scripts bash ceshi.sh 12 3456 78910 root localhost scripts cat ceshi.sh b...

shell 指令碼 迴圈

shell for 迴圈參考 linux下shell的for迴圈語句 shell逐行讀取檔案的3種方法 for迴圈語法 for var in item1 item2 itemn do command donefor迴圈 路徑查詢 在 mx資料夾有檔案 check list md5result tes...