1、shell的基本格式、變量
成都創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務領域包括:做網(wǎng)站、網(wǎng)站建設、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣等服務,滿足客戶于互聯(lián)網(wǎng)時代的東城網(wǎng)站設計、移動媒體設計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡建設合作伙伴!
# shell腳本中要加上解釋器 #! /bin/bash
# 用腳本打印出hello world
#! /bin/bash
echo "hello world"
exit
參數(shù):參數(shù)是一個存儲實數(shù)值的實體,腳本中一般被引用
#利用變量回顯hello world,下面例子會回顯兩個hello world。
#! /bin/bash
a="hello world"
echo $a
echo "hello world"
exit
如果參數(shù)后面加著其它內(nèi)容,需要用{}
#! /bin/bash
a="hello world"
echo ${a},i am coming
exit
回顯結果:
#計算字符串長度,hello world 連空格,總共11
2、腳本退出
#一個執(zhí)行成功的腳本返回值為0,不成功為非0
[root@localhost script]# clear
[root@localhost script]# sh hello.sh
hello world,i am coming
11
[root@localhost script]# echo $?
0
#判斷一個目錄內(nèi)是否有某個文件,有則回顯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 是否為可執(zhí)行文件
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文件是否存在,如果存在對其進行備份操作。如果不在回顯信息
#例子:輸入一個數(shù)值判斷其在哪個區(qū)間。小于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、循環(huán)語句 for、while
for var in $var1 $var2 $var3 var4... $var
do
......
......
done
#例子:打印1到10數(shù)字
[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]#
#打印方塊內(nèi)容 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循環(huán),主要也是用于循環(huán),另外還有continue(跳出continue下面語句,回歸頂部命令行)、break(停止、退出循環(huán))
#while語句
while [條件判斷]
do
......
......
done
#例子:根據(jù)條件判斷的,輸出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