您好,登錄后才能下訂單哦!
本篇文章為大家展示了怎樣進(jìn)行Linux.shell總結(jié),內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
#系統(tǒng)預(yù)定義變量
$0 :腳本文件名
$1-9 :第 1-9 個(gè)命令行參數(shù)名
$# :命令行參數(shù)個(gè)數(shù)
$@ :所有命令行參數(shù)
$* :所有命令行參數(shù)
$? :前一個(gè)命令的退出狀態(tài),可用于獲取函數(shù)返回值
$$ :執(zhí)行的進(jìn)程 ID
#數(shù)值運(yùn)算格式(注意空格)
m=$[ m + 1 ]
let m=m+1 # 不加空格
m=$(( m + 1 ))
#if 語句格式
VAR=10 #-eq 等于 #-ne 不等于 #-gt 大于 #-ge 大于等于 #-lt 小于 #-le 小于等于 if [ $VAR -eq 10 ] then echo "true" else echo "false" fi
#case 語句格式
NAME="sqldeveloper" case $NAME in "LINUX") echo "This is Linux" ;; "sqldeveloper") echo "This is sqldeveloper" ;; *) echo "other" ;; esac
#for 循環(huán)格式
for ((i = 1; i <= 8; i++)) do if [ $i -lt 2 ] then continue elif [ $i = 6 ] break else echo $i fi done for ((i = 1; i <= 8; i++)) do if [ $i -lt 2 ] then break else echo $i fi done # 循環(huán)一個(gè)集合 for VAR in a b c do echo $VAR done
#while 循環(huán)格式
VAR=5 while [ $VAR -lt 10 ] do echo $VAR VAR=$[ $VAR + 1 ] done
#until 循環(huán)格式
i=3 until [[ $i -gt 5 ]] do echo $i i=$[ $i + 1] done
#檢查語法錯(cuò)誤 sh -n test.sh #debug腳本 sh -x test.sh
#函數(shù)
function hello()
上述內(nèi)容就是怎樣進(jìn)行Linux.shell總結(jié),你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。