1.1 shell一些小總結nginx
1, 零寬斷言 2, 打印菜單 3, getopts選項簡介 4, 腳本查詢ip地理位置
1.1.1 grep Zero-Width Assertions (零寬斷言)
正則表達式
意思就是取出獲得你想要的東西,去掉你不關心的東西shell
-o: 表示精確匹配 -P: 表示使用pcre的正則表達式進行匹配
1.先行斷言: 表示匹配表達式前面的位置
bash
[root@bj-idc-15 ~]# echo "cooking sing" | grep -oP '[a-z]*(?=ing)' cook s
上面例子: (?=ing) 這個就是斷言,意思當這個斷言存在的時候,進行判斷匹配,匹配到的網絡
對象是它前面的字符串.固然前面的字符串你也須要用正則表達式匹配,例如:([a-z])*,因爲ssh
正則是貪婪的,因此斷言會一直從右面匹配到不能匹配的時候結束.
curl
2.後發斷言: 表示匹配表達式後面的位置ide
[root@bj-idc-15 ~]# echo "abcdefg abca" | grep -oP '(?<=abc).*' defg abca
上面的例子: (?<=abc)爲斷言,跟上面的相反,它是從最左端開始匹配oop
小小實戰
ui
(1)取ip地址
[root@bj-idc-15 learn]# ifconfig eth0 Link encap:Ethernet HWaddr 06:66:91:E7:9A:74 inet addr:10.10.11.15 Bcast:10.10.11.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:1234086 errors:0 dropped:0 overruns:0 frame:0 TX packets:829131 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:1182619038 (1.1 GiB) TX bytes:88948632 (84.8 MiB) Interrupt:246 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:62861848 errors:0 dropped:0 overruns:0 frame:0 TX packets:62861848 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:10133085846 (9.4 GiB) TX bytes:10133085846 (9.4 GiB)
取出em1的ip地址
[root@bds01 ~]# ifconfig | grep -E '(eth0|em1)' -A 1|grep -oP '(?<=addr:)[\d.]+' 10.10.10.180
(2)取日誌的時間
假如nginx備份日誌的格式文件是access_20150408_nginx.log
[root@bj-idc-15 ~]# echo "access_20150408_nginx.log" | grep -oP '(?<=access_).*(?=_nginx)' 20150408
1.1.2 打印菜單
echo命令
-n: 不自動換行 -e: 打開反斜槓ESC轉義。若字符串中出現如下字符,則特別加以處理,而不會將它當成通常文字輸出
\a 發出警告聲; \b 刪除前一個字符; \c 最後不加上換行符號; \f 換行但光標仍舊停留在原來的位置; \n 換行且光標移至行首; \r 光標移至行首,但不換行; \t 插入tab; \v 與\f相同; \\ 插入\字符; \nnn 插入nnn(八進制)所表明的ASCII字符
read命令
-p: 交互式顯示提示符信息 -t: 超時時間 -n: 設定字符個數 -s: 不會顯(輸入密碼的時候有用) -d: 定界符
實現一個簡單菜單
#!/bin/bash MYDATE=`date +%d/%m/%Y` THIS_HOST=`hostname` USER=`whoami` while true;do #clear cat <<EOF ____________________________________________________ User: $USER Host: $THIS_HOST DATE: $MYDATE ____________________________________________________ 1: list files 2: See memory total 3: See who is on the systeme 4: Help screen Q: Exit Menu ____________________________________________________ EOF echo -e -n "\t You Choice[1,2,3,4,Q]> " read CHOICE echo $CHOICE case $CHOICE in 1) ls ;; 2) free -m ;; 3) who ;; 4) echo "This is help screen , nothing here yet to help you !" ;; Q|q) exit 0 ;; *) echo -e "\t \007 unknown user reponse" ;; esac #echo -e -n "\t Hit the return key to continue " read -p " Hit the return key to continue " go done
1.1.3 getopts簡介
根據參數進行不一樣的提示或者不一樣的執行
先來看一個列子
#!/bin/bash while getopts "h:n:a" arg do case $arg in h) echo "Welcome to Beijing arg:$OPTARG";; n) echo "Your name is $OPTARG";; a) echo "Your age is $OPTARG" ;; :) echo "The -h arg must have one args";; ?) echo "Please input your select args" ;; esac done
執行結果
[root@bj-idc-15 learn]# sh get.sh -h "hello world" -n budongshu -a 18 Welcome to Beijing arg:hello world Your name is budongshu Your age is
getopts的腳本使用方法
腳本.sh option_string variable
第一個參數使用-h 這樣的選項 第二參數是-h 後面跟的hello world 字符串
解析上面的示例
定義選項:
能夠看到while getopts "h:n:a" arg 這句,因此定義的選項"h:n:a"在這裏定義.
冒號含義
1,字母后面跟上冒號表明這個選項必須有參數也就是-h和-n 後面必須提供一個參數,
參數的值存儲在變量$OPTARG
2,字母后面沒有冒號表明這個選項能夠不用跟上參數 ,跟上也不進行賦值. 能夠看到-a 沒有值
3, 在字母的最前面加上冒號表明忽略這個命令本身提供的錯誤信息提示. 下面演示一下
腳本
#!/bin/bash while getopts "h:n:a" arg do case $arg in h) echo "Welcome to Beijing arg:$OPTARG";; n) echo "Your name is $OPTARG";; a) echo "Your age is $OPTARG" ;; ?) echo "Please input your select args" ;; esac done
執行結果: 命令內部本身提供的報錯中間那個
[root@bj-idc-15 learn]# sh get.sh -h hello -n Welcome to Beijing arg:hello get.sh: option requires an argument -- n Please input your select args
加上冒號之後再看
腳本
#!/bin/bash while getopts ":h:n:a" arg do case $arg in h) echo "Welcome to Beijing arg:$OPTARG";; n) echo "Your name is $OPTARG";; a) echo "Your age is $OPTARG" ;; ?) echo "Please input your select args" ;; esac done
執行結果: 能夠看到少了一條報錯.
[root@bj-idc-15 learn]# sh get.sh -h hello -n Welcome to Beijing arg:hello Please input your select args
報錯信息提示
腳本
#!/bin/bash while getopts ":h:n:a" arg do case $arg in h) echo "Welcome to Beijing arg:$OPTARG";; n) echo "Your name is $OPTARG";; a) echo "Your age is $OPTARG" ;; :) echo "The -h arg must have one args";; ?) echo "Please input your select args" ;; esac done
: case中冒號,當你忽略系統命令報錯的時候(就是在前面加上:號),還有參數-h後面有冒號的,表明必須跟上一個選項參數, 若是沒有跟選項參數時候, 它會提示對應你自定義的錯誤信息,-a不是必須提供參數選項(由於字母后面沒有加冒號),因此執行腳本的時候 -a 後面不跟參數(或者不跟-a 選項時候),也不會報錯的
? case中問號,當跟上的參數好比說-e 不存在的時候報錯
以上全部的報錯$OPTARG變量都是不可用的
1.1.4 腳本查詢ip地理位置
腳本
#!/bin/bash Getip=$(curl -s ip.cn?ip=$1) IParea=$(echo $Getip|awk -F ":" '{print $3}'|awk '{print $1}') IPisp=$(echo $Getip|awk -F ":" '{print $3}'|awk '{print $2}') if [ ! $1 ];then IP=$(echo $Getip|awk -F ":" '{print $2}'|awk '{print $1}') echo $IP $IParea $IPisp else echo $1 $IParea $IPisp fi
執行結果
[root@bj-idc-15 script]# ./getip.sh (當前的外網ip地址) 117......... 北京市 .... [root@bj-idc-15 script]# ./getip.sh 8.8.8.8 8.8.8.8 美國 Google [root@bj-idc-15 script]# ./getip.sh 114.114.114.114 114.114.114.114 江蘇省南京市 信風網絡
2.0 Expect 簡介
安裝
yum install expect -y
腳本
#!/usr/bin/expect -f set ip [lindex $argv 0] set password "111111" spawn ssh root@$ip set timeout 20 expect { "yes/no" { send "yes\r";exp_continue } "password:" { send "$password\r" } } expect "]#" send "free -m\r" interact #expect eof #exit
執行結果
[root@bj-idc-15 learn]# hostname bj-idc-15 [root@bj-idc-15 learn]# ./test1.exp 10.10.10.14 spawn ssh root@10.10.10.14 root@10.10.10.14's password: Last login: Mon Apr 11 16:24:49 2016 from 10.10.11.15 [root@BS01 ~]# free -m total used free shared buffers cached Mem: 7870 2782 5088 0 341 2219 -/+ buffers/cache: 220 7650 Swap: 3999 57 3942 [root@BS01 ~]# hostname BS01