本文共 3980 字,大约阅读时间需要 13 分钟。
代表0个或多个任意字符
[root@localhost ~]# ls1.txt 3.txt 5.txt bb.txt filename test.txt2.txt 4.txt anaconda-ks.cfg cc.txt test.tar[root@localhost ~]# ls .txt1.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 ?.txt1.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
rootbin[root@localhost ~]# cat /etc/passwd |head -2 |cut -d ':' -f 1,2root:xbin:x[root@localhost ~]# cat /etc/passwd |head -2 |cut -d ':' -f 1-4root:x:0:0bin:x:1:1sort 命令排序 格式: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/nologinavahi-autoipd:x:170:170:Avahi IPv4LL Stack:/var/lib/avahi-autoipd:/sbin/nologinavahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologinbin:x:1:1:bin:/bin:/sbin/nologindaemon:x:2:2:daemon:/sbin:/sbin/nologindbus:x:81:81:System message bus:/:/sbin/nologinftp:x:14:50:FTP User:/var/ftp:/sbin/nologingames:x:12:100:games:/usr/games:/sbin/nologinhalt:x:7:0:halt:/sbin:/sbin/halwc -l 统计行数
[root@localhost ~]# wc -l 1.txt10 1.txtwc -w 统计词[root@localhost ~]# wc -m /etc/passwd883 /etc/passwdwc -m 统计字符数[root@localhost ~]# wc -m 1.txt385 1.txtuniq 用来删除重复的行,配合-c使用,统计重复的行数
sort 2.txt |uniq 先排序后删除重复[root@localhost ~]# vim 2.txt[root@localhost ~]# uniq 2.txtwassadjaajjj123111111222222333333111111121212222222[root@localhost ~]# uniq -c 2.txt1 wassadjaajjj1231 1111113 2222221 3333332 1111112 1212121 222222[root@localhost ~]# sort 2.txt |uniq111111121212222222333333wassadjaajjj123tee 后面跟文件名,类似于重定向> 还有一个作用是显示把内容显示在屏幕上
>跟文件是清空文件的内容tee -a 表示追加[root@localhost ~]# sort 2.txt |uniq -c |tee 3.txt
3 1111112 1212124 2222221 3333331 wassadjaajjj123[root@localhost ~]# cat 3.txt3 1111112 1212124 2222221 3333331 wassadjaajjj123[root@localhost ~]# > 3.txt[root@localhost ~]# cat 3.txttee -a 表示追加
[root@localhost ~]# sort 2.txt |uniq -c |tee 3.txt
3 1111112 1212124 2222221 3333331 wassadjaajjj123[root@localhost ~]# sort 2.txt |uniq -c |tee -a 3.txt3 1111112 1212124 2222221 3333331 wassadjaajjj123[root@localhost ~]# cat 3.txt3 1111112 1212124 2222221 3333331 wassadjaajjj1233 1111112 1212124 2222221 333333tr 命令替换字符,常用来处理文档中处理文档出现的特殊字符
[root@localhost ~]# ac='acer'[root@localhost ~]# echo $acacer[root@localhost ~]# echo acac[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/BASHBIN:X:1:1:BIN:/BIN:/SBIN/NOLOGINsplit 用于切割文档,常用的选项为-b和-l
-b 表示依据大小来分割文档,单位为byte!$ 表示上一条命令的最后一个变量
[root@localhost ~]# ls 1.txt1.txt[root@localhost ~]# ls !$ls 1.txt1.txt[] 代表字符组合中的任意一个[root@localhost ~]# cat /etc/passwd |head -2 |tr '[a-z]' '[A-Z]'
ROOT:X:0:0:ROOT:/ROOT:/BIN/BASHBIN:X:1:1:BIN:/BIN:/SBIN/NOLOGINcommand1;command2 使用;表示不管command1是否执行成功 command2都会执行
command1&&command2 使用&&表示command1执行成功 后command2才会执行,否则不执行command1||command2 使用||表示command1执行不成功 command2才会执行[root@localhost ~]# ls
anaconda-ks.cfg cc.txt split_dir test.txt xab xad xaf xahbb.txt filename test.tar xaa xac xae xag xai[root@localhost ~]# touch test1 test2[root@localhost ~]# ls test2 ; touch test2test2[root@localhost ~]# ls test2 && touch test2test2[root@localhost ~]# cat 3.txt || touch 3.txtcat: 3.txt: 没有那个文件或目录[root@localhost ~]# ls3.txt bb.txt filename test1 test.tar xaa xac xae xag xaianaconda-ks.cfg cc.txt split_dir test2 test.txt xab xad xaf xah转载于:https://blog.51cto.com/12947851/2060455