初識shell指令碼程式設計

weixin_33749242發表於2018-01-07

一. Shell基礎

shell是連結使用者和linux核心的一個命令解釋程式, 常見shell包括bash(linux預設)以及其他

1. shell概述

  • 新建一個檔案
    vi hello.sh
#!/bin/bash
echo 'hello world';

2. 指令碼執行方式

  • shell指令碼執行有兩種方式
    • bash hello.sh
    • chmod 755 hello.sh; ./hello.sh

3. 別名設定

  1. 臨時別名

    • alias vi=vim
    • alias mell='ls -l --color=auto'
    • 移除臨時別名 unalias vi
  2. 永久別名, 修改配置檔案

    • vi ~/.bashrc
    • source ~/.bashrc

4. 歷史命令 history

配置檔案 cat ~/.bash_history

5. 輸入輸出

linux標準輸入是鍵盤, 標準輸出裝置是顯示器

  • /dev/stderr 2 標準錯誤輸出
  • /dev/stdin 0 標準輸入
  • /dev/stdout 1 標準輸出
5.1. 輸出重定向
  1. 覆蓋式重定向 ls > 1.log
  2. 追加重定向 ls >> 2.log
  3. 標準錯誤輸出 2>>和2>
ls xdy 2>>1.log
ls xdy &>>2.log 執行正確和錯誤都輸出
ls &>>2.log
ls xdy >> 1.log 2>>2.log
5.2. 輸入重定向

<< wc << abc

6. 管道符

  1. ; 表示順序執行
    ls; cd /tmp; touch a;
  2. && 邏輯與
  3. || 邏輯或
ls && echo 'yes' || echo 'no'
abc && echo 'yes' || echo 'no'
  1. | 管道
    netstat -an | grep 22 | wc -l;

7. 萬用字元

  1. ? 一個字元
    • 多個字元
  2. [] 範圍
aa=`ls`
 1012  echo $ss
 1013  echo $aa
 1014  echo "$aa\n"

ls=`head hello.sh `
 1019  echo ls
 1020  echo $ls
 1021  echo $ls + "\n"
  echo "$ls\n"
 1023  echo 'abc'
 1024  bb=$(ls)
 1025  echo $bb
 1026  echo "\n$bb\n"

二. 變數

1. 使用者變數

  • 變數規則

    • 只能以字母, 下劃線開頭, 不能以數字開頭
    • 等號兩側不能出現空格, 如a = 3, 錯誤的寫法
    • 資料型別預設都是字串型別
    • 呼叫時, 必須使用$符號
  • 變數連線

a=123
b=2
a=$a+$b;(不要出現空格)
echo $a;  # a=123+2
c="$a"456
d=${c}789
# d=123+2456789
  • 檢視所有變數 set

set -u 如果變數未定義, 則提示

[root@localhost xdy]# echo $g

[root@localhost xdy]# set -u
[root@localhost xdy]# echo $g
-bash: g: unbound variable
[root@localhost xdy]# 
  • 刪除變數
    unset c 不能加$符號

2. 環境變數

  • 定義環境變數
    • 直接定義 : export a=1
    • 先定義, 後檢出 : b=2; export b;
    • env檢視當前所有的環境變數
    • 刪除時, 在哪兒定義, 就在那兒刪除
  • PATH
    當我們打linux命令時, 其實預設會在PATH環境變數定義的目錄下查詢, 如果找到則執行, 沒有找到就報錯, 所以我們可以把路徑加入到PATH中
[root@localhost ~]# echo $PATH
[root@localhost ~]# PATH="$PATH":/root/test
[root@localhost ~]# echo $PATH
......:/root/test
[root@localhost ~]# hello.sh 
  • PS1 是定義系統起始符號
[root@localhost ~]# echo $PS1
[\u@\h \W]\$
[root@localhost ~]# PS1=' [\u@\a \w]\$ '
 [root@ ~]# PS1=' [\u@\t \w]\$ '
 [root@14:20:38 ~]# PS1='[\u@\t \w]\$ '
[root@14:20:46 ~]# cd /usr/bin/
[root@14:21:19 /usr/bin]# 
  • PS2是定義命令換行符號的, 預設為 >
ls
[root@localhost log]# ls \
> haha
  • 語系 LANG
    • 檢視當前語系 locale
    • 檢視所有語系 locale -a
    • echo $LANG
    • 預設語系配置檔案/etc/sysconfig/i18n
[root@localhost log]# cat /etc/sysconfig/i18n 
LANG="zh_CN.UTF-8"
  • 位置引數$n
    • $0 : 命令本身
    • $1和$9是第一個到第九個引數 超過九個, 使用 ${10}
#!/bin/bash

a=20;
b=30;
c=$(( $a + $b))
echo $c;

d=$1;
e=$2;
echo $(( $d + $e))
# 呼叫時, 需要在命令後跟上兩個引數,, 用於填充$d 和 $e
  • $* : 所有引數, 當成一個整體
  • $@ : 所有引數, 分開處理
  • $# : 引數個數
#!/bin/bash

echo $*;
echo $@;
echo $#;

echo "\n"
for i in "$*"
        do
                echo $i
        done

for y in "$@"
        do
                echo $y
        done

3. 預定義變數

  • $? 表示上一條命令執行的結果, 0 表示正確執行, 非零表示報錯
    && || 都是判斷前一條命令的執行結果S?

  • 示例:

ls && echo 'yes' || echo 'no'  :
    |-- 如果ls正確執行, $?為0, echo 'yes' 判斷$? = 0, 輸出yes
    |-- 如果ls沒有正確執行, $?不為0, echo 'yes' 判斷非0, 不執行, echo 'no'判斷非0, 執行, 輸出no

每一條命令都會返回一個狀態值, 來標識自己有沒有成功執行, 返回的值, 會被儲存到$? 預定義變數中
  • $$ 表示當前的程式號
  • $! 表示最後一個後臺程式程式號

4. read命令 使用者輸入命令

  • -p 提示資訊
  • -t 超時終止指令碼
  • -s 隱藏輸入
  • -n 數字, 只允許輸入幾個字元
#!/bin/bash

read -p "please input your name" -t 30 name
echo $name

read -p "please input your password:" -s password
echo -e "\n"
echo $password

read -p "please input your sex[M/F]:" -n 1 sex
echo $sex

三. shell程式設計-運算子

1. 宣告變數型別

declare [+/-][選項] 變數

  • - : 給變數設定屬性
  • + : 取消變數的型別屬性
  • a : 將變數宣告為陣列型
  • i : 將變數宣告為整型
  • x : 將變數宣告為環境變數
    export其實就是declare -x 變數的簡寫形式
  • r : 只讀屬性, 修改後, 無法改變
  • p : 加變數名, 顯示當前變數屬性, 不加, 顯示所有變數屬性
[root@localhost test]# unset arr
[root@localhost test]# arr[1]=haha
[root@localhost test]# arr[2]=hehe
[root@localhost test]# declare -a arr[3]=heihei
[root@localhost test]# echo ${arr}

[root@localhost test]# echo ${arr[*]}
haha hehe heihei
[root@localhost test]# echo ${arr[2]}
hehe

[root@localhost test]# a=1
[root@localhost test]# b=2
[root@localhost test]# declare -i c
[root@localhost test]# c=$a+$b
[root@localhost test]# echo $c
3
[root@localhost test]# declare -p c
declare -i c="3"
[root@localhost test]# declare +i c
[root@localhost test]# echo $c
3
[root@localhost test]# declare -p c
declare -- c="3"

2. 數值運算

推薦$(( ))這種寫法

[root@localhost test]# aa=11
[root@localhost test]# bb=22
[root@localhost test]# cc=$(expr $aa + $bb)
[root@localhost test]# echo $cc
33
[root@localhost test]# dd=$(($aa+$bb))
[root@localhost test]# echo $dd
33
[root@localhost test]# ee=$[$aa+$bb]
[root@localhost test]# echo ee
ee
[root@localhost test]# declare -p ee
declare -- ee="33"
[root@localhost test]# let ff=$aa+$bb
[root@localhost test]# echo $ff
33
[root@localhost test]# declare -p ff
declare -- ff="33"
[root@localhost test]# let gg=1&&0
-bash: 0: command not found
[root@localhost test]# let gg=1&0
[1] 2988
-bash: 0: command not found
[root@localhost test]# gg=$((1&&0))
[1]+  Done                    let gg=1
[root@localhost test]# echo $gg
0

3. 變數測試

[root@localhost test]# hh=${jj-3}
[root@localhost test]# echo $hh
3
如果jj沒有設定過, 則hh等於3, 如果為空, 則hh為空, 如果為某個值, 則hh也為某個值

四. 環境變數配置檔案

source 配置檔案 使更改完的配置檔案立即生效
. 檔案 作用等同於source

  • 環境變數主要配置檔案包括
/etc/profile (PATH, umask)
/etc/profile.d/*.sh (lang)
~/.bash_profile (將~/bin加入到環境變數)
~/.bashrc (別名)
/etc/bashrc (PS1)
  • umask 檢視系統預設許可權 022
    檔案最高許可權為666
    目錄最高許可權為777
    022 表示為 ----w--w-
建立檔案後, 預設是
666 = rw-rw-rw-   
666-022 = 
    rw-rw-rw- - ----w--w- 
    = rw-r--r--
建立目錄後
777-022 = 
    rwxrwxrwx - ----w--w- 
    = rwxr-xr-x
  • 其他配置檔案包括
~/.bash_logout(退出登入時執行的指令碼)
~/.bash_history(保留歷史命令)
  • /etc/motd 寫歡迎資訊

五. 正規表示式

正規表示式和萬用字元的區別

  • 正規表示式是用來在檔案中匹配符合條件的字串, 正則式包含匹配, grep, awk, sed 等命令可以支援正規表示式

  • 萬用字元是用來匹配符合條件的檔名, 萬用字元是完全匹配, ls, find, cp這些命令不支援正規表示式, 所以只能使用shell自己的萬用字元來進行匹配

* 表示前一個字元出現0次或者多次  a*會通篇匹配, 必須是用aa* 才會匹配包含a的內容
. 表示除換行符外的任意一個字元 
^ 匹配行首任意一個字元 ^a
$ 匹配行尾  a$
[] 括號中任意一個字元 [a-zA-Z]
[^] 取反
\ 轉義  \.
{n\} 前面字元恰巧出現n次
\{n,\} 大於n次
\{n, m\} 大於n, 小於m
[0-9]\{4\}-[0-9]\{2\}-[0-9]\{2\} 匹配日期
[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\} 匹配ip

相關文章