20.1 shell腳本介紹
- shell是一種腳本語言
- 能夠使用邏輯判斷、循環等語法
- 能夠自定義函數
- shell是系統命令的集合
- shell腳本能夠實現自動化運維,能大大增長咱們的運維效率
20.2 shell腳本結構和執行
- 開頭須要加#!/bin/bash
- 以#開頭的行做爲解釋說明
- 腳本的名字以.sh結尾,用於區分這是一個shell腳本
- 執行方法有兩種:
- chmod +x 1.sh; ./1.sh
- bash 1.sh
- 查看腳本執行過程 bash -x 1.sh
- 查看腳本是否語法錯誤 bash -n 1.sh
20.3 date命令用法
-
date +%Y-%m-%d, date +%y-%m-%d 年月日shell
[root@zhangjin-120:~/shells]#date +%Y-%m-%d 2019-01-09
bash
-
date +%H:%M:%S = date +%T 時間運維
[root@zhangjin-120:~/shells]#date +%T 11:43:57
函數
[root@zhangjin-120:~/shells]#date +%H:%M:$S 11:44:
code
-
date +%s 時間戳字符串
[root@zhangjin-120:~/shells]#date +%s 1547005590
數學
-
date -d "+1day" 一天後it
[root@zhangjin-120:~/shells]#date -d "+1day" 2019年 01月 10日 星期四 11:48:15 CST
自動化
-
date -d "-1 day" 一天前for循環
[root@zhangjin-120:~/shells]#date -d "-1day" 2019年 01月 08日 星期二 11:50:25 CST
-
date -d "-1 month" 一月前
[root@zhangjin-120:~/shells]#date -d "-1 month" 2018年 12月 09日 星期日 11:51:28 CST
-
date -d "-1 min" 一分鐘前
[root@zhangjin-120:~/shells]#date -d "-1 min" 2019年 01月 09日 星期三 11:51:12 CST
-
date +%w, date +%W 星期
[root@zhangjin-120:~/shells]#date +%w
3
[root@zhangjin-120:~/shells]#date +%W
01
20.4 shell腳本中的變量
- 當腳本中使用某個字符串較頻繁而且字符串長度很長時,就應該使用變量代替
- 使用條件語句時,常使用變量 if [ $a -gt 1 ]; then ... ; fi
- 引用某個命令的結果時,用變量替代 n=
wc -l 1.txt
- 寫和用戶交互的腳本時,變量也是必不可少的 read -p "Input a number: " n; echo $n 若是沒寫這個n,能夠直接使用$REPLY
- 內置變量 $0, $1, $2… $0表示腳本自己,$1 第一個參數,$2 第二個 .... $#表示參數個數
- 數學運算a=1;b=2; c=$(($a+$b))或者$[$a+$b]
20.5 shell腳本中的邏輯判斷
- 格式1:if 條件 ; then 語句; fi
- 格式2:if 條件; then 語句; else 語句; fi
- 格式3:if …; then … ;elif …; then …; else …; fi
- 邏輯判斷表達式:if [ $a -gt $b ]; if [ $a -lt 5 ]; if [ $b -eq 10 ]等
-gt (>); -lt(<); -ge(>=); -le(<=);-eq(==); -ne(!=) 注意空格
- 能夠使用 && || 結合多個條件
- if [ $a -gt 5 ] && [ $a -lt 10 ]; then
- if [ $b -gt 5 ] || [ $b -lt 3 ]; then
20.6 文件目錄屬性判斷
- [ -f file ] 判斷是不是普通文件,且存在
- [ -d file ] 判斷是不是目錄,且存在
- [ -e file ] 判斷文件或目錄是否存在
- [ -r file ] 判斷文件是否可讀
- [ -w file ] 判斷文件是否可寫
- [ -x file ] 判斷文件是否可執行
20.7 if特殊用法
- if [ -z "$a" ] 這個表示當變量a的值爲空時會怎麼樣
- if [ -n "$a" ] 表示當變量a的值不爲空
- if grep -q '123' 1.txt; then 表示若是1.txt中含有'123'的行時會怎麼樣
- if [ ! -e file ]; then 表示文件不存在時會怎麼樣
- if (($a<1)); then …等同於 if [ $a -lt 1 ]; then… [ ] 中不能使用<,>,==,!=,>=,<=這樣的符號
20.8/20.9 case判斷
格式:
case 變量名 in
value1)
command
;;
value2)
command
;;
*)
command
;;
esac
在case程序中,能夠在條件中使用|,表示或的意思, 好比
1|2)
command
;;
20.10 for循環
語法:for 變量名 in 條件; do …; done
20.11/20.12 while循環
語法 while 條件; do … ; done
20.13 break跳出循環
20.14 continue結束本次循環
忽略continue之下的代碼,直接進行下一次循環
20.15 exit退出整個腳本