成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

Bash Shell 腳本新手指南(三)

開發
這篇文章將來學習一些知識點,這些將使你為持續的個人發展做好準備。它將涉及到函數、用 if/elif 語句進行比較,并以研究 while 循環作為結尾。

??Bash Shell 腳本新手指南(一) ??

??Bash Shell 腳本新手指南(二)??

歡迎來到面向初學者的 Bash Shell 腳本知識第三部分。這最后一篇文章將再來學習一些知識點,這些將使你為持續的個人發展做好準備。它將涉及到函數、用 if/elif 語句進行比較,并以研究 while 循環作為結尾。

函數

讓我們從一個看似困難但其實很簡單的基本概念開始,即函數。把它看作是一種簡單的方法,可以把腳本中被反復使用的部分放到一個可重復使用的組中。你在本系列第一篇或第二篇文章中所做的任何事情都可以放在一個函數中。因此,讓我們把一個函數放到我們的 learnToScript.sh 文件中。讓我指出幾個關鍵點。你將需要為你的函數起一個名字、一對小括號,以及用大括號包圍放在你的函數中的命令。

    #!/bin/bash
#A function to return an echo statement.
helloFunc() {
echo "Hello from a function."
}
#invoke the first function helloFunc()
helloFunc

你會看到如下輸出結果:

    [zexcon@fedora ~]$ ./learnToScript.sh
Hello from a function.
[zexcon@fedora ~]$

函數是重復使用一組命令的好方法,但如果你能使它們在每次使用時對不同的數據進行操作,它們會更加有用。這就要求你在每次調用函數時提供數據,這稱為參數。

要提供參數,你只需在調用函數時把它們加在函數名稱后面。為了使用你提供的數據,你在函數命令中使用位置來引用它們。它們將被命名為 $1、$2、$3,以此類推,這取決于你的函數將需要多少個參數。

讓我們修改上一個例子來幫助更好地理解這個問題。

    #!/bin/bash
#A function to return an echo statement.
helloFunc() {
echo "Hello from a function."
echo $1
echo $2
echo "You gave me $# arguments"
}
#invoke the function helloFunc()
helloFunc "How is the weather?" Fine

輸出如下:

    Hello from a function.
How is the weather?
Fine
You gave me 2 arguments

輸出中發生的事情是 helloFunc() 在每一行都做了一個回顯。首先它回顯了一個 Hello from a function,然后它繼續回顯變量 $1 的值,結果是你傳遞給 helloFunc 的 "How is the weather?"。然后它將繼續處理變量 $2,并回顯其值,這是你傳遞的第二個項目:Fine。該函數將以回顯 You gave me $# arguments 結束。注意,第一個參數是一個用雙引號括起來的單個字符串 "How is the weather?"。第二個參數 Fine 沒有空格,所以不需要引號。

除了使用 $1、$2 等之外,你還可以通過使用變量 $# 來確定傳遞給函數的參數數量。這意味著你可以創建一個接受可變參數數量的函數。

關于 bash 函數的更多細節,網上有很多好的參考資料。這里有一個可以讓你入門的資料。

我希望你能了解到函數如何在你的 bash 腳本中提供巨大的靈活性。

數值比較 []

如果你想進行數字比較,你需要在方括號 [] 中使用以下運算符之一:

  • -eq (等于)
  • -ge (等于或大于)
  • -gt (大于)
  • -le (小于或等于)
  • -lt (小于)
  • -ne (不相等)

因此,舉例來說,如果你想看 12 是否等于或小于 25,可以像 [ 12 -le 25 ] 這樣。當然,12 和 25 可以是變量。例如,[ $twelve -le $twentyfive ]。(LCTT 譯注:注意保留方括號和判斷語句間的空格)

if 和 elif 語句

那么讓我們用數字比較來介紹 if 語句。Bash 中的 if 語句將以 if 開始, 以 fi 結束。if 語句 以 if 開始,然后是你想做的檢查。在本例中,檢查的內容是變量 numberOne 是否等于 1。如果 numberOne 等于 1,將執行 then 語句,否則將執行 else 語句。

    #!/bin/bash
numberTwelve=12
if [ $numberTwelve -eq 12 ]
then
echo "numberTwelve is equal to 12"
elif [ $numberTwelve -gt 12 ]
then
echo "numberTwelve variable is greater than 12"
else
echo "neither of the statemens matched"
fi

輸出如下:

    [zexcon@fedora ~]$ ./learnToScript.sh
numberTwelve variable is equal to 12

你所看到的是 if 語句的第一行,它在檢查變量的值是否真的等于 12。如果是的話,語句就會停止,并發出 numberTwelve is equal to 12 的回顯,然后在 fi 之后繼續執行你的腳本。如果變量大于 12 的話,就會執行 elif 語句,并在 fi 之后繼續執行。當你使用 if 或 if/elif 語句時,它是自上而下工作的。當第一條語句是匹配的時候,它會停止并執行該命令,并在 fi 之后繼續執行。

字符串比較 [[]]

這就是數字比較。那么字符串的比較呢?使用雙方括號 [[]] 和以下運算符等于或不等于。(LCTT 譯注:注意保留方括號和判斷語句間的空格)

  • = (相等)
  • != (不相等)

請記住,字符串還有一些其他的比較方法,我們這里不會討論,但可以深入了解一下它們以及它們是如何工作的。

    #!/bin/bash
#variable with a string
stringItem="Hello"
#This will match since it is looking for an exact match with $stringItem
if [[ $stringItem = "Hello" ]]
then
echo "The string is an exact match."
else
echo "The strings do not match exactly."
fi
#This will utilize the then statement since it is not looking for a case sensitive match
if [[ $stringItem = "hello" ]]
then
echo "The string does match but is not case sensitive."
else
echo "The string does not match because of the capitalized H."
fi

你將得到以下三行:

    [zexcon@fedora ~]$ ./learnToScript.sh
The string is an exact match.
The string does not match because of the capitalized H.
[zexcon@fedora ~]$

while 循環

在結束這個系列之前,讓我們看一下循環。一個關于 while 循環的例子是:“當 1 小于 10 時,在數值上加 1”,你繼續這樣做直到該判斷語句不再為真。下面你將看到變量 number 設置為 1。在下一行,我們有一個 while 語句,它檢查 number 是否小于或等于 10。在 do 和 done 之間包含的命令被執行,因為 while 的比較結果為真。所以我們回顯一些文本,并在 number 的值上加 1。我們繼續執行,直到 while 語句不再為真,它脫離了循環,并回顯 We have completed the while loop since $number is greater than 10.。

#!/bin/bash
number=1
while [ $number -le 10 ]
do
echo "We checked the current number is $number so we will increment once"
((number=number+1))
done
echo "We have completed the while loop since $number is greater than 10."

while 循環的結果如下:

    [zexcon@fedora ~]$ ./learnToScript.sh
We checked the current number is 1 so we will increment once
We checked the current number is 2 so we will increment once
We checked the current number is 3 so we will increment once
We checked the current number is 4 so we will increment once
We checked the current number is 5 so we will increment once
We checked the current number is 6 so we will increment once
We checked the current number is 7 so we will increment once
We checked the current number is 8 so we will increment once
We checked the current number is 9 so we will increment once
We checked the current number is 10 so we will increment once
We have completed the while loop since 11 is greater than 10.
[zexcon@fedora ~]$

正如你所看到的,實現這一目的所需的腳本量要比用 if 語句不斷檢查每個數字少得多。這就是循環的偉大之處,而 while 循環只是眾多方式之一,它以不同的方式來滿足你的個人需要。

總結

下一步是什么?正如文章所指出的,這是,面向 Bash Shell 腳本初學者的。希望我激發了你對腳本的興趣或終生的熱愛。我建議你去看看其他人的腳本,了解你不知道或不理解的地方。請記住,由于本系列每篇文章都介紹了數學運算、比較字符串、輸出和歸納數據的多種方法,它們也可以用函數、循環或許多其他方法來完成。如果你練習所討論的基礎知識,你將會很開心地把它們與你還要學習的所有其他知識結合起來。

責任編輯:未麗燕 來源: Linux中國
相關推薦

2021-12-30 10:26:37

Bash Shell腳本文件命令

2022-01-20 16:43:38

Bash 腳本ShellLinux

2022-05-16 15:37:32

開源軟件

2010-06-07 16:10:53

HadoopOnDem

2022-04-08 12:56:52

Linux終端命令

2025-01-13 07:15:00

Monorepo代碼倉庫中項目代碼管理

2010-06-21 12:39:56

OSPF路由協議

2023-03-01 08:00:00

機器學習數據集

2010-05-27 10:42:38

SVN配置文檔

2009-11-16 08:58:43

PHP語言

2011-08-23 10:11:10

LinuxTop命令

2010-08-04 09:06:21

Flex安裝

2023-03-15 09:46:07

R Markdown代碼語法

2010-09-01 16:56:11

無線局域網

2010-07-01 12:35:46

UML用例圖

2011-03-30 14:07:56

Ubuntu的安裝

2010-08-02 09:36:22

Flex

2021-08-28 17:30:51

LinuxSSH

2010-05-24 16:36:14

2009-10-10 16:50:33

點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 免费美女网站 | 国产精品成人一区二区三区夜夜夜 | 在线免费毛片 | 在线免费观看日本 | 欧美激情综合五月色丁香小说 | 五月激情久久 | 亚洲美女一区 | 亚洲国产欧美在线 | 国产福利资源在线 | 亚洲激情在线观看 | 99精品视频在线 | 亚欧洲精品在线视频免费观看 | 国产一区二区三区四区 | 欧美日韩电影免费观看 | 亚洲欧洲成人av每日更新 | 精品美女视频在线观看免费软件 | 欧美一区二区在线观看 | 国产69精品久久99不卡免费版 | 国产一区二区三区免费视频 | 亚洲精品久久久久久久久久久 | 日韩精品一二三区 | 日本a在线 | 成人黄色三级毛片 | 免费黄色片在线观看 | 日韩欧美国产精品一区二区三区 | 蜜桃视频在线观看免费视频网站www | 日韩一区二区不卡 | 国产中文字幕在线 | 波多野结衣一区二区三区在线观看 | 亚洲国产成人精品女人久久久野战 | 一级毛片视频在线 | 国产精品久久久久久妇女 | 91青娱乐在线 | 国产一区二区三区四区三区四 | www久久久| 九七午夜剧场福利写真 | 国产高清无av久久 | 亚洲三级在线观看 | 最新国产精品 | 狠狠草视频 | a级片在线观看 |