介紹:
Shell 是一個用 C 語言編寫的程序熏矿,它是用戶使用 Linux 的橋梁。Shell 既是一種命令語言孝凌,又是一種程序設(shè)計(jì)語言。
1月腋、創(chuàng)建
vi demo02.sh
2蟀架、編輯
第一行固定語句 #!/bin/bash
自定義變量:
只能是字母瓣赂、數(shù)字、下劃線片拍,且不能以數(shù)字開頭煌集,不能是bash的關(guān)鍵字。
舉例子:
obj=123或者 "123"或者'123'
echo輸出
${obj} 引用變量
設(shè)置只讀變量
readonly 變量名字
刪除變量
unset 變量名字
obj1="zhangsan"
echo '{obj1}456
echo "${obj1}456" --->輸出結(jié)果zhangsan456 能夠還原變量所代表的字符串捌省。
3苫纤、./demo02.sh sh demo02.sh
chmod 777(+x) demo02.sh
算數(shù)運(yùn)算符
- 等
關(guān)系運(yùn)算符
-eq:equal
-ne:not equal
-gt:great than
-lt:less than
-ge:great than or equal
-le:less than or equal
返回值true或者false
- 等
程序控制
if then elif fi
注意空格
具體了解請參照課件。
小例子
#!/bin/bash
read a //鍵盤輸入a
read b
read c
if [ "$c" == "+" ] //注意空格
then
echo "$a+$b=" `expr $a + $b `//注意` expr`
fi
if [ "$a" -eq "$b" ]
then
echo "a=b"
fi
exit
數(shù)組
!/bin/bash
array=(1 2 3 4 5)
創(chuàng)建數(shù)組
echo {array[@]}
輸出整個數(shù)組
echo {array[RANDOM%5]}
隨機(jī)輸出數(shù)組中的元素
exit
[neusoft@localhost demo02]$ ./array.sh
5
1 5 10
1 5 10
3
[neusoft@localhost demo02]$ cat array.sh
#!/bin/bash
array[0]=1
array[5]=5
array[10]=10
echo ${array[5]}
echo ${array[4]}
echo ${array[RANDOM%5]}
echo ${array[*]}
echo ${array[@]}
echo ${#array[*]}
exit
需增加循環(huán)和case的講解