Sort工具

Linux sort命令用于将文本文件内容加以排序。
sort可针对文本文件的内容,以行为单位来排序。

sort 常见选项

b 忽略每行前面开始出的空格字符。
-c 检查文件是否已经按照顺序排序。
-d 排序时,处理英文字母、数字及空格字符外,忽略其他的字符。
-f 排序时,将小写字母视为大写字母。
-i 排序时,除了040至176之间的ASCII字符外,忽略其他的字符。
-m 将几个排序好的文件进行合并。
-M 将前面3个字母依照月份的缩写进行排序。
-n 依照数值的大小排序。
-u 意味着是唯一的(unique),输出的结果是去完重了的。
-o<输出文件> 将排序后的结果存入指定的文件。
-r 以相反的顺序来排序。
-t<分隔字符> 指定排序时所用的栏位分隔字符。
+<起始栏位>-<结束栏位> 以指定的栏位来排序,范围由起始栏位到结束栏位的前一栏位。
help 显示帮助。
version 显示版本信息

sort工具示例

默认情况

默认情况下,sort工具会按字母顺序进行排序

[root@1centos ~]# sort /etc/passwdabrt:x:173:173::/etc/abrt:/sbin/nologinadm:x:3:4:adm:/var/adm:/sbin/nologinapache:x:48:48:Apache:/usr/share/httpd:/sbin/nologinavahi:x:70:70:Avahi mDNS/DNS-SD Stack:/var/run/avahi-daemon:/sbin/nologinbin:x:1:1:bin:/bin:/sbin/nologinchrony:x:992:987::/var/lib/chrony:/sbin/nologincockpit-ws:x:990:984:User for cockpit-ws:/:/sbin/nologincolord:x:997:994:User for colord:/var/lib/colord:/sbin/nologindaemon:x:2:2:daemon:/sbin:/sbin/nologindbus:x:81:81:System message bus:/:/sbin/nologindirsrv:x:988:982:user for 389-ds-base:/usr/share/dirsrv:/sbin/nologindovecot:x:97:97:Dovecot IMAP server:/usr/libexec/dovecot:/sbin/nologindovenull:x:981:975:Dovecot's unauthorized user:/usr/libexec/dovecot:/sbin/nologinftp:x:14:50:FTP User:/var/ftp:/sbin/nologingames:x:12:100:games:/usr/games:/sbin/nologin

将 /etc/passwd 以第三列进行反向排序

这边就以数字倒叙进行排序了

[root@1centos ~]# sort -t: -rk 3 /etc/passwdnobody:x:99:99:Nobody:/:/sbin/nologinods:x:999:999:softhsm private keys owner:/var/lib/softhsm:/sbin/nologinpolkitd:x:998:997:User for polkitd:/:/sbin/nologincolord:x:997:994:User for colord:/var/lib/colord:/sbin/nologinunbound:x:996:993:Unbound DNS resolver:/etc/unbound:/sbin/nologingluster:x:995:992:GlusterFS daemons:/run/gluster:/sbin/nologinlibstoragemgmt:x:994:991:daemon account for libstoragemgmt:/var/run/lsm:/sbin/nologinsaslauth:x:993:76:Saslauthd user:/run/saslauthd:/sbin/nologinchrony:x:992:987::/var/lib/chrony:/sbin/nologingeoclue:x:991:985:User for geoclue:/var/lib/geoclue:/sbin/nologincockpit-ws:x:990:984:User for cockpit-ws:/:/sbin/nologinsssd:x:989:983:User for sssd:/:/sbin/nologindirsrv:x:988:982:user for 389-ds-base:/usr/share/dirsrv:/sbin/nologinsetroubleshoot:x:987:981::/var/lib/setroubleshoot:/sbin/nologinsaned:x:986:980:SANE scanner daemon user:/usr/share/sane:/sbin/nologingnome-initial-setup:x:985:979::/run/gnome-initial-setup/:/sbin/nologinpcp:x:984:978:Performance Co-Pilot:/var/lib/pcp:/sbin/nologinkdcproxy:x:983:977:IPA KDC Proxy User:/:/sbin/nologinipaapi:x:982:976:IPA Framework User:/:/sbin/nologindovenull:x:981:975:Dovecot's unauthorized user:/usr/libexec/dovecot:/sbin/nologindovecot:x:97:97:Dovecot IMAP server:/usr/libexec/dovecot:/sbin/nologinhsqldb:x:96:96::/var/lib/hsqldb:/sbin/nologinpostfix:x:89:89::/var/spool/postfix:/sbin/nologindbus:x:81:81:System message bus:/:/sbin/nologi……省略……

对 /etc/passwd 的第三列进行排序,输出到 px.txt 中

[root@1centos ~]# sort -t: -k 3 /etc/passwd -o px.txt[root@1centos ~]# cat px.txt root:x:0:0:root:/root:/bin/bashxnftp:x:1007:1007::/home/xnftp:/sbin/nologinvuser:x:1008:1008::/opt/vuser:/sbin/nologintom:x:1009:1009::/home/tom:/bin/bashjerry:x:1010:1010::/home/jerry:/bin/bashkongkong:x:1011:1011::/home/kongkong:/bin/bashqemu:x:107:107:qemu user:/:/sbin/nologinoperator:x:11:0:operator:/root:/sbin/nologinusbmuxd:x:113:113:usbmuxd user:/:/sbin/nologinbin:x:1:1:bin:/bin:/sbin/nologingames:x:12:100:games:/usr/games:/sbin/nologinftp:x:14:50:FTP User:/var/ftp:/sbin/nologin

uniq工具

Linux uniq 命令用于检查及删除文本文件中重复出现的行列,一般与 sort 命令结合使用。

uniq常见选项

uniq 可检查文本文件中重复出现的行列
-c或count 在每列旁边显示该行重复出现的次数。
-d或repeated 仅显示重复出现的行列。
-f<栏位>或skip-fields=<栏位> 忽略比较指定的栏位。
-s<字符位置>或skip-chars=<字符位置> 忽略比较指定的字符。
-u或unique 仅显示出一次的行列。
-w<字符位置>或check-chars=<字符位置> 指定要比较的字符。
help 显示帮助。
version 显示版本信息。
[输入文件] 指定已排序好的文本文件。如果不指定此项,则从标准读取数据;
[输出文件] 指定输出的文件。如果不指定此选项,则将内容显示到标准输出设备(显示终端)

uniq工具示例

查看文件 the.txt

[root@1centos zhengzebiaodashi]# cat the.txt 1the 2the 3the1the 2the 3the1the 2the 3the1the 2the 3the1the 2the 3the2the 2the 3the3the 2the 3the 4the 5the4hello hi the word world5 2 3 4 5 6 7 8

默认排序

[root@1centos zhengzebiaodashi]# uniq the.txt1the 2the 3the1the 2the 3the2the 2the 3the3the 2the 3the 4the 5the4hello hi the word world5 2 3 4 5 6 7 8

删除重复行,并在显示重复出现的次数

[root@1centos zhengzebiaodashi]# uniq -c the.txt    4 1the 2the 3the   2    1 1the 2the 3the   1 2the 2the 3the   1 3the 2the 3the 4the 5the   1 4hello hi the word world   1 5 2 3 4 5 6 7 8

查找 testfile 文件中的重复行

[root@1centos zhengzebiaodashi]# uniq -d the.txt 1the 2the 3the

tr工具

tr是translate的缩写,是用来做翻译或转换工作的。具体来讲,它可以对输入内容(stdin)进行转换或者删除。是linux管道的必备工具。下面来看几个常见的用法

tr常见选项

-c:取代所有不属于第一字符集的字符;
-d:删除所有属于第一字符集的字符;
-s:把连续重复的字符以单独一个字符表示;
-t:先删除第一字符集较第二字符集多出的字符

tr工具示例配合 echo 将展示的小写字母变大写

[root@1centos zhengzebiaodashi]# echo "jb51" |tr 'a-z' 'A-Z'JB51

替换输出的重复字符

[root@1centos zhengzebiaodashi]# echo 'Thisssssss is cdsnnn' |tr -s 'sn'This is cdsn

删除字符串中的默写字符

[root@1centos zhengzebiaodashi]# echo 'this is csdn' |tr -d 'th'is is csdn

数组排序

有了这些工具,就可以简单的给数组进行升序或者降序了

#!/bin/bashread -p "请输入你的数组,是空格隔开:" ashuzu=($a)echo "你的数组为:${shuzu[*]}"echo "数组升序为:"echo "$a" |tr ' ' '/n' |sort -n |tr '/n' ' 'echo ''echo "数组降序为:"echo "$a" |tr ' ' '/n' |sort -nr |tr '/n' ' 'echo " "

进行使用

[root@1centos zhengzebiaodashi]# source paixu.sh 请输入你的数组,是空格隔开:8 1 5 9 7你的数组为:8 1 5 9 7数组升序为:1 5 7 8 9 数组降序为:9 8 7 5 1