1.利用while循環(huán)計算1到100的和:
示例代碼1:
#!/bin/bash
i=1
sum=0
while [ $i -le 100 ]
do
let sum=sum+$i
let i++
done
echo $sum
示例代碼2:利用while循環(huán)計算1到100之間所有奇數(shù)之和
#!/bin/bash
i=1
sum=0
while [ $i -le 100 ]
do
let sum=sum+$i
let i+=2
done
echo $sum
示例代碼3:利用while循環(huán)計算1到100之間所有偶數(shù)之和
#!/bin/bash
i=2
sum=0
while [ $i -le 100 ]
do
let sum=sum+$i
let i+=2
done
echo $sum
2.利用while循環(huán)打印**
示例代碼:利用while循環(huán)打印一個5x5的*
#!/bin/bash
i=1
j=1
while [ $i -le 5 ]
do
while [ $j -le 5 ]
do
echo -n "* "
let j++
done
echo
let i++
let j=1
done
3.使用read結(jié)合while循環(huán)讀取文本文件:
示例代碼1:
#!/bin/bash
file=$1 #將位置參數(shù)1的文件名復(fù)制給file
if [ $# -lt 1 ];then #判斷用戶是否輸入了位置參數(shù)
echo "Usage:$0 filepath"
exit
fi
while read -r line #從file文件中讀取文件內(nèi)容賦值給line(使用參數(shù)r會屏蔽文本中的特殊符號,只做輸出不做轉(zhuǎn)譯)
do
echo $line #輸出文件內(nèi)容
done $file
示例2:按列讀取文件內(nèi)容
#!/bin/bash
file=$1
if [[ $# -lt 1 ]]
then
echo "Usage: $0 please enter you filepath"
exit
fi
while read -r f1 f2 f3 #將文件內(nèi)容分為三列
do
echo "file 1:$f1 ===> file 2:$f2 ===> file 3:$f3" #按列輸出文件內(nèi)容
done "$file"
4.while循環(huán)中的死循環(huán):
示例:利用死循環(huán),讓用戶做選擇,根據(jù)客戶的選擇打印相應(yīng)結(jié)果
#!/bin/bash
#打印菜單
while :
do
echo "********************"
echo " menu "
echo "1.tima and date"
echo "2.system info"
echo "3.uesrs are doing"
echo "4.exit"
echo "********************"
read -p "enter you choice [1-4]:" choice
#根據(jù)客戶的選擇做相應(yīng)的操作
case $choice in
1)
echo "today is `date +%Y-%m-%d`"
echo "time is `date +%H:%M:%S`"
read -p "press [enter] key to continue..." Key #暫停循環(huán),提示客戶按enter鍵繼續(xù)
;;
2)
uname -r
read -p "press [enter] key to continue..." Key
;;
3)
w
read -p "press [enter] key to continue..." Key
;;
4)
echo "Bye!"
exit 0
;;
*)
echo "error"
read -p "press [enter] key to continue..." Key
;;
esac
done
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,謝謝大家對腳本之家的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
您可能感興趣的文章:- 使用shell腳本每天對MySQL多個數(shù)據(jù)庫自動備份的講解
- shell腳本操作mysql數(shù)據(jù)庫刪除重復(fù)的數(shù)據(jù)
- shell腳本批量刪除es索引的方法
- Java調(diào)用shell腳本解決傳參和權(quán)限問題的方法
- springboot打包不同環(huán)境配置以及shell腳本部署的方法
- Linux Shell在目錄下使用for循環(huán)結(jié)合if查找文件的巧用
- Shell腳本判斷用戶的輸入內(nèi)容
- Shell腳本中使用getopts處理多命令行選項
- Shell腳本從文件中逐行讀取內(nèi)容的幾種方法實例
- shell腳本實現(xiàn)監(jiān)控某個進(jìn)程意外停止后拉起進(jìn)程