天天看點

特殊符号

代表0個或多個任意字元

[root@localhost ~]# ls

1.txt 3.txt 5.txt bb.txt filename test.txt

2.txt 4.txt anaconda-ks.cfg cc.txt test.tar

[root@localhost ~]# ls .txt

1.txt 2.txt 3.txt 4.txt 5.txt bb.txt cc.txt test.txt

[root@localhost ~]# ls test.

test.tar test.txt

? 代表一個字元

[root@localhost ~]# ls test.ta?

test.tar

[root@localhost ~]# ls ?.txt

1.txt 2.txt 3.txt 4.txt 5.txt

#注釋符号,後面内容不被執行

[root@localhost ~]# #dnfsfndfi

[root@localhost ~]# ##ksdjsldkl

[root@localhost ~]# djij

-bash: djij: 未找到指令

\ 脫義字元,

這個字元會将後面的特殊字元(如*)還原為普通字元

[root@localhost ~]# ls -d 1.txt*

ls: 無法通路1.txt*: 沒有那個檔案或目錄

cut 指令是用來截取某一字段,其格式為 cat -d '分割字元'[-cf] n ,n為數字

-d : 後面跟分割符,分隔符要用單引号括起來

-c :後面接的是第幾塊字元

-f :後面跟的是第幾區塊

[root@localhost ~]# cat /etc/passwd |head -2 |cut -d ':' -f 1

root

bin

[root@localhost ~]# cat /etc/passwd |head -2 |cut -d ':' -f 1,2

root:x

bin:x

[root@localhost ~]# cat /etc/passwd |head -2 |cut -d ':' -f 1-4

root:x:0:0

bin:x:1:1

sort 指令排序 格式:sort [-t 分隔符] [-kn1,n2] [nru] n1 n2 為數字

-t:後面跟分隔符,作用同cut

-n:後面使用純數字排序

-r :反向排序

-u :表示重複

-kn1,n2:表示n1 區間排序到n2區間,可以隻寫-kn1 即對n1字段排序

[root@localhost ~]# sort /etc/passwd

adm:x:3:4:adm:/var/adm:/sbin/nologin

avahi-autoipd:x:170:170:Avahi IPv4LL Stack:/var/lib/avahi-autoipd:/sbin/nologin

avahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologin

bin:x:1:1:bin:/bin:/sbin/nologin

daemon:x:2:2:daemon:/sbin:/sbin/nologin

dbus:x:81:81:System message bus:/:/sbin/nologin

ftp:x:14:50:FTP User:/var/ftp:/sbin/nologin

games:x:12:100:games:/usr/games:/sbin/nologin

halt:x:7:0:halt:/sbin:/sbin/hal

wc -l 統計行數

[root@localhost ~]# wc -l 1.txt

10 1.txt

wc -w 統計詞

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

883 /etc/passwd

wc -m 統計字元數

[root@localhost ~]# wc -m 1.txt

385 1.txt

uniq 用來删除重複的行,配合-c使用,統計重複的行數

sort 2.txt |uniq 先排序後删除重複

[root@localhost ~]# vim 2.txt

[root@localhost ~]# uniq 2.txt

wassadjaajjj123

111111

222222

333333

121212

[root@localhost ~]# uniq -c 2.txt

1 wassadjaajjj123

1 111111

3 222222

1 333333

2 111111

2 121212

1 222222

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

tee 後面跟檔案名,類似于重定向> 還有一個作用是顯示把内容顯示在螢幕上

>跟檔案是清空檔案的内容

tee -a 表示追加

[root@localhost ~]# sort 2.txt |uniq -c |tee 3.txt

3 111111

4 222222

[root@localhost ~]# cat 3.txt

[root@localhost ~]# > 3.txt

[root@localhost ~]# sort 2.txt |uniq -c |tee -a 3.txt

tr 指令替換字元,常用來處理文檔中處理文檔出現的特殊字元

[root@localhost ~]# ac='acer'

[root@localhost ~]# echo $ac

acer

[root@localhost ~]# echo ac

ac

[root@localhost ~]# echo ac |tr '[a-z]' '[A-Z]'

AC

[root@localhost ~]# cat /etc/passwd |head -2 |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 ~]# ls 1.txt

1.txt

[root@localhost ~]# ls !$

ls 1.txt

[] 代表字元組合中的任意一個

command1;command2 使用;表示不管command1是否執行成功 command2都會執行

command1&&command2 使用&&表示command1執行成功 後command2才會執行,否則不執行

command1||command2 使用||表示command1執行不成功 command2才會執行

anaconda-ks.cfg cc.txt split_dir test.txt xab xad xaf xah

bb.txt filename test.tar xaa xac xae xag xai

[root@localhost ~]# touch test1 test2

[root@localhost ~]# ls test2 ; touch test2

test2

[root@localhost ~]# ls test2 && touch test2

[root@localhost ~]# cat 3.txt || touch 3.txt

cat: 3.txt: 沒有那個檔案或目錄

3.txt bb.txt filename test1 test.tar xaa xac xae xag xai

anaconda-ks.cfg cc.txt split_dir test2 test.txt xab xad xaf xah

本文轉自 yzllinux 51CTO部落格,原文連結:http://blog.51cto.com/12947851/2060455,如需轉載請自行聯系原作者