91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Shell中使用while循環

發布時間:2021-05-17 16:44:39 來源:億速云 閱讀:303 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關如何在Shell中使用while循環,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

1.利用while循環計算1到100的和:

示例代碼1:

#!/bin/bash
i=1
sum=0
while [ $i -le 100 ]
do
 let sum=sum+$i
 let i++
done
echo $sum

如何在Shell中使用while循環

示例代碼2:利用while循環計算1到100之間所有奇數之和

#!/bin/bash
i=1
sum=0
while [ $i -le 100 ]
do
 let sum=sum+$i
 let i+=2
done
echo $sum

如何在Shell中使用while循環

示例代碼3:利用while循環計算1到100之間所有偶數之和

#!/bin/bash
i=2
sum=0
while [ $i -le 100 ]
do
 let sum=sum+$i
 let i+=2
done
echo $sum

如何在Shell中使用while循環

2.利用while循環打印**

示例代碼:利用while循環打印一個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

如何在Shell中使用while循環

3.使用read結合while循環讀取文本文件:

示例代碼1:

#!/bin/bash
file=$1         #將位置參數1的文件名復制給file
if [ $# -lt 1 ];then   #判斷用戶是否輸入了位置參數
 echo "Usage:$0 filepath"
 exit
fi
while read -r line  #從file文件中讀取文件內容賦值給line(使用參數r會屏蔽文本中的特殊符號,只做輸出不做轉譯)
do
 echo $line    #輸出文件內容
done  < $file

如何在Shell中使用while循環

如何在Shell中使用while循環

示例2:按列讀取文件內容

#!/bin/bash
file=$1
if [[ $# -lt 1 ]]
then
 echo "Usage: $0 please enter you filepath"
 exit
fi
while read -r f1 f2 f3  #將文件內容分為三列
do
 echo "file 1:$f1 ===> file 2:$f2 ===> file 3:$f3"  #按列輸出文件內容
done < "$file"

如何在Shell中使用while循環

如何在Shell中使用while循環

4.while循環中的死循環:

示例:利用死循環,讓用戶做選擇,根據客戶的選擇打印相應結果

#!/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
#根據客戶的選擇做相應的操作
 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  #暫停循環,提示客戶按enter鍵繼續
  ;;
  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

如何在Shell中使用while循環

關于如何在Shell中使用while循環就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉林省| 怀远县| 马鞍山市| 孝昌县| 正宁县| 阿尔山市| 太仆寺旗| 宜兰市| 大安市| 吴堡县| 沙河市| 乃东县| 涪陵区| 太仓市| 巴里| 长岭县| 永宁县| 三亚市| 元氏县| 顺义区| 耒阳市| 托里县| 砀山县| 湛江市| 武平县| 清涧县| 竹北市| 永年县| 外汇| 乌拉特前旗| 彰化县| 大厂| 通州区| 麻栗坡县| 密山市| 肥西县| 天津市| 洪洞县| 通辽市| 雅安市| 阳高县|