您好,登錄后才能下訂單哦!
1、shell的基本格式、變量
# shell腳本中要加上解釋器 #! /bin/bash
# 用腳本打印出hello world
#! /bin/bash
echo "hello world"
exit
參數:參數是一個存儲實數值的實體,腳本中一般被引用
#利用變量回顯hello world,下面例子會回顯兩個hello world。
#! /bin/bash
a="hello world"
echo $a
echo "hello world"
exit
如果參數后面加著其它內容,需要用{}
#! /bin/bash
a="hello world"
echo ${a},i am coming
exit
回顯結果:
#計算字符串長度,hello world 連空格,總共11
2、腳本退出
#一個執行成功的腳本返回值為0,不成功為非0
[root@localhost script]# clear
[root@localhost script]# sh hello.sh
hello world,i am coming
11
[root@localhost script]# echo $?
0
#判斷一個目錄內是否有某個文件,有則回顯file exsit ,沒有則返回1
[root@localhost script]# cat test.sh
#! /bin/bash
cd /home
if [ -f file ];then
echo "file exsit"
else
exit 2
fi
[root@localhost script]# sh test.sh
[root@localhost script]# echo $?
2
[root@localhost script]#
3、Test語句、if語句
test -d xx 目錄是否存在
test -f xx 文件是否存在
test -b xx 是否為塊文件
test -x xx 是否為可執行文件
A -eq B 判斷是否相等
A -ne B 判斷不相等
A -le B 小于等于
A -lt B 小于
A -gt B 大于
#if條件判斷語句
if [];then
......
else
......
fi
#if語句嵌套
if [];then
.......
elif [];then
.......
elif [];then
.......
else
......
fi
#test舉例,判斷test文件是否存在,如果存在對其進行備份操作。如果不在回顯信息
#例子:輸入一個數值判斷其在哪個區間。小于80,大于100,位于80到100之間,用的是if嵌套!
[root@localhost script]# cat if.sh
#! /bin/bash
read -p "plz input a $num:" num
if [ $num -le 80 ];then
echo "num is less 80"
elif [ $num -ge 80 ] && [ $num -le 100 ];then
echo "num between 80 and 100"
else
echo "num is greater than 100"
fi
4、循環語句 for、while
for var in $var1 $var2 $var3 var4... $var
do
......
......
done
#例子:打印1到10數字
[root@localhost home]# cat for1.sh
#! /bin/bash
for var in {1..10}
do
echo "$var"
sleep 2
done
[root@localhost home]# sh for1.sh
1
2
3
4
5
6
7
8
9
10
[root@localhost home]#
#打印方塊內容 for嵌套
[root@localhost home]# sh for2.sh
*********
*********
*********
*********
*********
*********
*********
*********
*********
[root@localhost home]# cat for2.sh
#! /bin/bash
for ((i=1;i<10;i++))
do
for ((j=1;j<10;j++))
do
echo -n "*"
done
echo ""
done
# while循環,主要也是用于循環,另外還有continue(跳出continue下面語句,回歸頂部命令行)、break(停止、退出循環)
#while語句
while [條件判斷]
do
......
......
done
#例子:根據條件判斷的,輸出1-10
[root@localhost script]# cat while.sh
#! /bin/bash
var=1
while [ $var -le 10 ]
do
echo $var
var=$[$var+1]
done
[root@localhost script]# sh while.sh
1
2
3
4
5
6
7
8
9
10
[root@localhost script]# echo $?
0
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。