shell基礎(下) 特殊符號

Linux shell中的特殊符號shell

一 cut命令

cut命令: 截取某一個字段。bash

格式:cut -d ‘分隔符’ [-cf] n , n指數字。spa

有以下選項:code

-d : 後跟分隔符。排序

-c: 後面接第幾個字符文檔

-f: 後接第幾個區塊字符串

實例:it

[root@localhost ~]# cat /etc/passwd |head -2 
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
[root@localhost ~]# cat /etc/passwd |head -2 |cut -d ':' -f 1,2,3
root:x:0
bin:x:1
[root@localhost ~]# cat /etc/passwd |head -2 |cut -d ':' -f 1-4
root:x:0:0
bin:x:1:1

 

二 sort命令

用做排序。 class

格式: sort [-t 分隔符]  [-kn1,n2] [-nru]。n1 和n2指數字。test

其餘選項的含義以下:

  • -t: 後跟分隔符,做用跟cut 的-d選項同樣。
  • -n:表示純數字排序
  • -r:表示反向排序
  • -u: 去重複
  • -kn1,n2 : 表示由n1區間排序到n2區間,能夠只寫-kn1,即對n1字段排序
  • 若是sort不加任何選項,則從首字符向後依次按ASCII碼值進行比較,最後進行升序輸出。

實例以下:

[root@localhost ~]# head -n5 /etc/passwd | sort
adm:x:3:4:adm:/var/adm:/sbin/nologin
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
root:x:0:0:root:/root:/bin/bash
// ASCII碼值排序  a b d l r

 

  • -t 分隔符、-k後單數字表示對第幾個區域的字符串排序,-n選項則表示使用純數字排序。

實例以下:

[root@localhost ~]# head -n5 /etc/passwd | sort -t: -k3 -n
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
[root@localhost ~]# head -n5 /etc/passwd | sort
adm:x:3:4:adm:/var/adm:/sbin/nologin
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
root:x:0:0:root:/root:/bin/bash

//對比便可發現
  • -kn1,n2表示對n1和n2區域內的字符串排序,-r則表示反向排序。實例以下:
[root@localhost ~]# head -n5 /etc/passwd | sort -t: -k3,5 -r
lp:x:4:7:lp:/var/spool/lpd:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
bin:x:1:1:bin:/bin:/sbin/nologin
root:x:0:0:root:/root:/bin/bash

 

三 wc命令

wc命令用於統計文檔的行數,字符數或詞數。經常使用選項有-l統計行數 、-m統計字符數、-w統計詞數。

實例以下:

[root@localhost ~]# wc /etc/passwd
  23   43 1080 /etc/passwd

//23行 43個詞 1080個字符

[root@localhost ~]# wc -l /etc/passwd
23 /etc/passwd

[root@localhost ~]# wc -m /etc/passwd
1080 /etc/passwd
[root@localhost ~]# wc -w /etc/passwd
43 /etc/passwd

 

四 uniq 命令

用來刪除重複行。經常使用選項-c 統計重複的行數。

實例以下:

[root@localhost tmp]# uniq 2.txt
111
222
111
333

注:使用uniq前,必須先給文件排序,不然無論用。

實例以下:

[root@localhost tmp]# sort 2.txt| uniq

111
222
333
[root@localhost tmp]# sort 2.txt| uniq -c 
      1 
      2 111
      1 222
      1 333

但不改變原文件

[root@localhost tmp]# cat 2.txt
111
222
111
333

 

五 tee命令

相似> , 重定向的同時還在屏幕顯示。還把文件寫入後面跟的文件。

實例以下:

[root@localhost tmp]# echo "aaaabbbb" |tee  2.txt
aaaabbbb
[root@localhost tmp]# cat 2.txt
aaaabbbb

 

六 tr命令


替換字符,用來處理文檔中出現的特殊字符。

實例以下:

[root@localhost tmp]# head -n2 /etc/passwd |tr '[a-z]' '[A-Z]'
ROOT:X:0:0:ROOT:/ROOT:/BIN/BASH
BIN:X:1:1:BIN:/BIN:/SBIN/NOLOGIN
[root@localhost tmp]# head -n2 /etc/passwd |tr '[A-Z]' '[a-z]'
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin

 

七 split命令

用於切割文檔。經常使用選項:-b 和 -l。

-b: 表示根據大小來分隔文檔,單位爲byte。實例以下:

[root@localhost tmp]# mkdir split
[root@localhost tmp]# cd !$
cd split
[root@localhost split]# cp /etc/passwd ./
[root@localhost split]# ls
passwd
[root@localhost split]# split -b 500 passwd

若是不指定目標文件名,則會以xaa、xab... 這樣的文件名存取切割後的文件。

[root@localhost split]# ls
passwd  xaa  xab  xac

也可指定目標文件名。如:123

[root@localhost split]# rm -f xa*
[root@localhost split]# split -b 500 passwd 123
[root@localhost split]# ls
123aa  123ab  123ac  passwd

 

-l :據行數切割文檔。實例以下:

[root@localhost split]# split -l 10 passwd 
[root@localhost split]# wc -l *
\  12 123aa
   9 123ab
   2 123ac
  23 passwd
  10 xaa
  10 xab
   3 xac
  69 總用量

 

八 特殊符號

$ 變量前綴,結合!成!$。

[root@localhost split]# ls
123aa  123ab  123ac  passwd  xaa  xab  xac
[root@localhost split]# !$
ls
123aa  123ab  123ac  passwd  xaa  xab  xac

 

; 多個命令之間加符號; 運行多個命令。

[root@localhost split]# ls
123aa  123ab  123ac  passwd  xaa  xab  xac
[root@localhost split]# !$
ls
123aa  123ab  123ac  passwd  xaa  xab  xac
[root@localhost split]# touch 2.txt;ls -l
總用量 28
-rw-r--r--. 1 root root  500 1月  12 23:37 123aa
-rw-r--r--. 1 root root  500 1月  12 23:37 123ab
-rw-r--r--. 1 root root   80 1月  12 23:37 123ac
-rw-r--r--. 1 root root    0 1月  12 23:45 2.txt
-rw-r--r--. 1 root root 1080 1月  12 23:33 passwd
-rw-r--r--. 1 root root  385 1月  12 23:39 xaa
-rw-r--r--. 1 root root  575 1月  12 23:39 xab
-rw-r--r--. 1 root root  120 1月  12 23:39 xac

 

~ 表示用戶家目錄。root用戶的家目錄是/root, 普通用戶則是/home/username。

實例以下:

[root@localhost split]# cd ~
[root@localhost ~]# pwd
/root

 

& 把命令放到後臺執行。

 

|| 和 &&  多個命令間的分隔符。(|| 命令或,&&命令與)

使用&&時,只有命令1 執行成功後,命令2纔會執行,不然命令2不執行。

使用|| 時, 命令1執行成功後則命令2不執行,不然執行命令2。

  • &&
[root@localhost ~]# touch test1.txt test2.txt
[root@localhost ~]# ls test3.txt && vi test2.txt 
ls: 沒法訪問test3.txt: 沒有那個文件或目錄
[root@localhost ~]# ls test3.txt 
ls: 沒法訪問test3.txt: 沒有那個文件或目錄
  • ||
[root@localhost ~]# ls test3.txt || vi test2.txt

(更新中。。。)

相關文章
相關標籤/搜索