shell是一個命令行解釋器,它接收應用程序/用戶命令,然后調(diào)用操作系統(tǒng)內(nèi)核。
[shaofei@upuptop-pc ~]$ cat /etc/shells
/bin/sh
/bin/bash
/usr/bin/sh
/usr/bin/bash
[shaofei@upuptop-pc bin]$ ll | grep bash
-rwxr-xr-x 1 root root 964600 Aug 8 2019 bash
lrwxrwxrwx 1 root root 4 Oct 28 2019 sh -> bash
[shaofei@upuptop-pc bin]$ echo $SHELL
/bin/bash
腳本格式
腳本以 #!/bin/bash 開頭(指定解析器)
第一個shell腳本
[shaofei@upuptop-pc sh]$ touch helloworld.sh
[shaofei@upuptop-pc sh]$ vim helloworld.sh
#!/bin/bash
echo "helloworld"
(1) 采用bash或sh+腳本的相對路徑或絕對路徑(不用賦予腳本+x權限)
[shaofei@upuptop-pc sh]$ sh helloworld.sh
helloworld
[shaofei@upuptop-pc sh]$ bash helloworld.sh
helloworld
(2)采用輸入腳本的絕對路徑或相對路徑執(zhí)行腳本(必須具有可執(zhí)行權限+x)
[shaofei@upuptop-pc sh]$ chmod 777 helloworld.sh
[shaofei@upuptop-pc sh]$ ./helloworld.sh
helloworld
[shaofei@upuptop-pc sh]$ /home/shaofei/sh/helloworld.sh
helloworld
注意:第一種執(zhí)行方法,本質(zhì)是bash解析器幫你執(zhí)行腳本,所以腳本本身不需要執(zhí)行權限。第二種執(zhí)行方法,本質(zhì)是腳本需要自己執(zhí)行,所以需要執(zhí)行權限。
[shaofei@upuptop-pc sh]$ touch batch.sh
[shaofei@upuptop-pc sh]$ vim batch.sh
#!/bin/bash
echo 'hello'
cd /home/shaofei/sh
echo 'cccc' > a.txt
\(PWD,\)HOME,\(USER,\)SHELL等
[shaofei@upuptop-pc sh]$ echo $HOME
/home/shaofei
[shaofei@upuptop-pc sh]$ echo $PWD
/home/shaofei/sh
[shaofei@upuptop-pc sh]$ echo $USER
shaofei
顯示當前Shell中所有變量:set
[shaofei@upuptop-pc sh]$ set
BASH=/bin/bash
BASHOPTS=checkwinsize:cmdhist:expand_aliases:extquote:force_fignore:histappend:hostcomplete:interactive_comments:login_shell:progcomp:promptvars:sourcepath
BASH_ALIASES=()
BASH_ARGC=()
BASH_ARGV=()
BASH_CMDS=()
BASH_LINENO=()
BASH_SOURCE=()
………………
基本語法
a. 定義變量: 變量名=變量值
b. 撤銷變量: unset 變量名
c. 聲明靜態(tài)變量: readonly 變量, 注意不能unset
定義規(guī)則
a. 變量名可以使用字母、數(shù)字、下劃線組成,但是不能以數(shù)字開頭。環(huán)境變量建議全部大寫
b. 等號前后不能有空格
c. 在bash中,變量類型默認是字符串類型,無法直接進行數(shù)值計算
d. 變量的值如果有空格必須要用"雙引號"引起來
案例
創(chuàng)建變量A并賦值為5
[shaofei@upuptop-pc sh]$ A=5
[shaofei@upuptop-pc sh]$ echo $A
5
給變量A重新賦值為9
[shaofei@upuptop-pc sh]$ A=9
[shaofei@upuptop-pc sh]$ echo $A
9
撤銷變量A
[shaofei@upuptop-pc sh]$ unset A
[shaofei@upuptop-pc sh]$ echo $A
創(chuàng)建靜態(tài)的變量B
[shaofei@upuptop-pc sh]$ readonly B=2
[shaofei@upuptop-pc sh]$ echo $B
2
靜態(tài)變量不能重新賦值
[shaofei@upuptop-pc sh]$ B=10
-bash: B: readonly variable
靜態(tài)變量不能unset
[shaofei@upuptop-pc sh]$ unset B
-bash: unset: B: cannot unset: readonly variable
在bash中,變量默認類型都是字符串類型,無法直接進行數(shù)值運算
[shaofei@upuptop-pc sh]$ C=1+2
[shaofei@upuptop-pc sh]$ echo $C
1+2
變量的值如果有空格,需要使用雙引號或單引號括起來
[shaofei@upuptop-pc sh]$ D=I LOVE YOU
-bash: LOVE: command not found
[shaofei@upuptop-pc sh]$ D="I LOVE YOU"
[shaofei@upuptop-pc sh]$ echo $D
I LOVE YOU
可把變量提升為全局環(huán)境變量,可供其他Shell程序使用
[shaofei@upuptop-pc sh]$ vim helloworld.sh
在helloworld.sh文件中增加echo $B
#!/bin/bash
echo "helloworld"
echo $B
沒有打印$B的值
[shaofei@upuptop-pc sh]$ sh helloworld.sh
helloworld
修改B變量為全局環(huán)境變量
[shaofei@upuptop-pc sh]$ export B
[shaofei@upuptop-pc sh]$ sh helloworld.sh
helloworld
2
$n
功能描述:n為數(shù)字,$0 代表該腳本名稱,$1-\(9代表第一到第九個參數(shù),十以內(nèi)的參數(shù),十以上的參數(shù)需要用大括號包含,如\){10}
輸出該腳本的文件名稱、輸入?yún)?shù)1和輸入?yún)?shù)2的值
[shaofei@upuptop-pc sh]$ touch param.sh
[shaofei@upuptop-pc sh]$ vim param.sh
#!/bin/bash
echo $0 $1 $2
[shaofei@upuptop-pc sh]$ sh param.sh 1 2 3
param.sh 1 2
$# (獲取所有的參數(shù)個數(shù),常用于循環(huán))
[shaofei@upuptop-pc sh]$ vim param.sh
#!/bin/bash
echo $#
[shaofei@upuptop-pc sh]$ sh param.sh 1 2 3 4 5
5
$*
、$@
$*
(功能描述:這個變量代表命令行中所有的參數(shù),$*
把所有的參數(shù)看做一個整體)
$@
(功能描述: 這個變量代表命令行中所有的參數(shù),不過$@
把每個參數(shù)區(qū)別對待)
[shaofei@upuptop-pc sh]$ vim param.sh
#!/bin/bash
echo $@
echo $*
[shaofei@upuptop-pc sh]$ sh param.sh 1 2 3 4 5
1 2 3 4 5
1 2 3 4 5
$? (功能描述:最后一次執(zhí)行的命令的返回狀態(tài)。如果這個變量的值為0,證明上一個命令正確執(zhí)行;如果這個變量的值為非0,則證明上一個命令執(zhí)行不正確了)
[shaofei@upuptop-pc sh]$vim param.sh
#!/bin/bash
echo $?
[shaofei@upuptop-pc sh]$ ./helloworld.sh
helloworld
[shaofei@upuptop-pc sh]$ sh param.sh
0
(1) $((運算式))
或$[運算式]
(2) expr +,-,*,/,%
加,減,乘,除,取余
注意:expr 運算符之間要有空格
[shaofei@upuptop-pc sh]$ expr 3 + 2
5
(2)計算3-2的值
[shaofei@upuptop-pc sh]$ expr 3 - 2
1
(3)計算(2+3)* 4的值
第一種方式
[shaofei@upuptop-pc sh]$ expr `expr 2 + 3 ` \* 4
20
第二種方式
[shaofei@upuptop-pc sh]$ echo $(((3+2)*4))
20
第三種方式
[shaofei@upuptop-pc sh]$ echo $[(2+3)*4]
20
基本語法
[ condition ]
(注意:condition前后有空格)
常用的判斷條件
(1) 兩個整數(shù)之間比較
=
字符串比較
-lt
小于(less than)
-le
小于等于(less equal)
-eq
等于(equal)
-gt
大于(greater)
-ge
大于等于(greater equal)
-ne
不等于(Not equal)
(2) 按照文件權限進行比較
-r
有讀的權限(read)
-w
有寫的權限(write)
-x
有執(zhí)行的權限(execute)
(3) 按照文件類型進行判斷
-f
文件存在并且是一個常規(guī)的文件(file)
-e
文件存在(existence)
-d
文件存在且是一個目錄(directory)
案例:
[shaofei@upuptop-pc ~]$ [ 22 -ge 23 ]
[shaofei@upuptop-pc ~]$ echo $?
1
[shaofei@upuptop-pc ~]$ [ 23 -ge 23 ]
[shaofei@upuptop-pc ~]$ echo $?
0
-rw-rw-r-- 1 shaofei shaofei 5 May 8 23:02 a.txt
-rw-rw-r-- 1 shaofei shaofei 65 May 8 23:01 batch.sh
-rwxrwxrwx 1 shaofei shaofei 38 May 8 23:36 helloworld.sh
-rw-rw-r-- 1 shaofei shaofei 31 Dec 8 01:01 k.sh.template
-rw-rw-r-- 1 shaofei shaofei 22 May 9 21:56 param.sh
-rw-rw-r-- 1 shaofei shaofei 59 Dec 8 01:01 start.sh.template
-rwxrwxrwx 1 shaofei shaofei 21 Nov 20 09:58 test1.sh
[shaofei@upuptop-pc sh]$ [ -r helloworld.sh ]
[shaofei@upuptop-pc sh]$ echo $?
0
[shaofei@upuptop-pc sh]$ [ -x batch.sh ]
[shaofei@upuptop-pc sh]$ echo $?
1
[shaofei@upuptop-pc sh]$ [ -e /home/shaofei/aaa.txt ]
[shaofei@upuptop-pc sh]$ echo $?
1
[shaofei@upuptop-pc sh]$ [ -e /home/shaofei/aaa.txt ] || echo false
false
[shaofei@upuptop-pc sh]$ [ -e /home/shaofei/aaa.txt ] && echo false
[shaofei@upuptop-pc sh]$
if [ 條件判斷式 ]; then
程序代碼
fi
或者
if [ 條件判斷式 ]
then
程序代碼
fi
注意:
[ 條件表達式 ]
中括號和條件判斷式之間必須有空格if
后面要有空格then
前面要有分號輸入一個數(shù)字,如果是1 則輸出 true 如果是2 則輸出 false 如果是其他數(shù)字則不做任何操作
[shaofei@upuptop-pc sh]$ vim if.sh
#!/bin/bash
if [ $1 -eq 1 ]; then
echo true
fi
if [ $1 -eq 2 ]; then
echo false
fi
[shaofei@upuptop-pc sh]$ sh if.sh 1
true
[shaofei@upuptop-pc sh]$ sh if.sh 2
false
[shaofei@upuptop-pc sh]$ sh if.sh 123
[shaofei@upuptop-pc sh]$
case $變量名 in
"value1")
如果變量等于value1,執(zhí)行程序
;;
"value2")
如果變量等于value2,執(zhí)行程序
;;
……省略其他分支……
esac
注意
in
,每一個模式匹配必須以)
結(jié)束。;;
表示命令序列結(jié)束,相當于java
中的break
*)
表示默認模式,相當于java
中的break
esac
結(jié)束輸入一個數(shù)字,如果是1 則輸出 true 如果是2 則輸出 false 如果是其他數(shù)字輸出default
[shaofei@upuptop-pc sh]$ vim case.sh
#!/bin/bash
case $1 in
1)
echo true
;;
2)
echo false
;;
*)
echo default
;;
esac
[shaofei@upuptop-pc sh]$ sh case.sh 1
true
[shaofei@upuptop-pc sh]$ sh case.sh 2
false
[shaofei@upuptop-pc sh]$ sh case.sh 3
default
[shaofei@upuptop-pc sh]$
for (( 初始值;循環(huán)控制條件;變量變化 ))
do
程序
done
for 變量 in 變量1,變量2,變量
do
程序
done
計算1-100的和
[shaofei@upuptop-pc sh]$ vim for1.sh
#!/bin/bash
sum=0
for ((i=1;i<=100;i++))
do
sum=$[$sum+$i] # or sum=$(( $sum+$i ))
done
echo $sum
[shaofei@upuptop-pc sh]$ sh for1.sh
打印所有的輸入?yún)?shù) 比較$* 和 $@
$*
和 $@
都不被雙引號""
包括的時候,沒有區(qū)別,$*
和$@
都表示傳遞給函數(shù)或腳本的所有參數(shù),不被雙引號""
包含時,都以$1 $2 …$n
的形式輸出所有參數(shù)。
[shaofei@upuptop-pc sh]$ vim for2.sh
#!/bin/bash
echo ---------$*
for i in $*
do
echo $i
done
echo --------$#
for j in $@
do
echo $j
done
echo --------end
[shaofei@upuptop-pc sh]$ sh for2.sh 1 2 3 4
---------1 2 3 4
1
2
3
4
--------4
1
2
3
4
--------end
""
包含時,"$*"
會將所有的參數(shù)作為一個整體,以"$1 $2 …$n"
的形式輸出所有參數(shù);"$@"
會將各個參數(shù)分開,以"$1" "$2"…"$n"
的形式輸出所有參數(shù)。
[shaofei@upuptop-pc sh]$ vim for3.sh
#!/bin/bash
echo ---------"$*"
for i in "$*"
do
echo $i
done
echo --------$#
for j in "$@"
do
echo $j
done
echo --------end
[shaofei@upuptop-pc sh]$ sh for3.sh 1 2 3 4
---------1 2 3 4
1 2 3 4
--------4
1
2
3
4
--------end
while [ 條件表達式 ]
do
程序
done
計算1-100的和
[shaofei@upuptop-pc sh]$ vim while.sh
#!/bin/bash
sum=0
i=0
while [ $i -le 100 ]
do
sum=$(( $sum+$i ))
i=$[$i+1]
done
echo $sum
[shaofei@upuptop-pc sh]$ sh while.sh
5050
注意: while后面有空格.
read(選項)(參數(shù))
選項:
-p:指定讀取值時的提示符;
-t:指定讀取值時等待的時間(秒)。
參數(shù)
變量:指定讀取值的變量名
[shaofei@upuptop-pc sh]$ vim read.sh
#!/bin/bash
read -p "input your name: " -t 3 NAME
echo "Your Name is $NAME !"
[shaofei@upuptop-pc sh]$ sh read.sh
input your name: shaofeer
Your Name is shaofeer !
basename [string/pathname][suffix]
(功能描述:basename命令會刪掉所有的前綴包括最后一個('/’)字符,然后將字符串顯示出來。
選項:
suffix為后綴,如果suffix被指定了,basename會將pathname或string中的suffix去掉。
[shaofei@upuptop-pc sh]$ basename /home/shaofei/123.txt
123.txt
[shaofei@upuptop-pc sh]$ basename /home/shaofei/123.txt .txt
123
dirname 文件絕對路徑
(功能描述:從給定的包含絕對路徑的文件名中去除文件名(非目錄的部分),然后返回剩下的路徑(目錄的部分))
獲取a.txt文件的路徑
[shaofei@upuptop-pc sh]$ dirname /home/shaofei/sh/a.txt
/home/shaofei/sh
[ function ] funname[()]
{
Action;
[return int;]
}
funname
3.案例實操
(1)計算兩個輸入?yún)?shù)的和
[shaofei@upuptop-pc sh]$ vim fun.sh
#!/bin/bash
function sum(){
sum=$[$1+$2]
return $sum
}
sum 1 2
echo $?
[shaofei@upuptop-pc sh]$ sh fun.sh
3
待更新……
待更新……
個人學習總結(jié)
聯(lián)系客服