分享好友 最新动态首页 最新动态分类 切换频道
linux文件前三行如何排序,Sort工具Linux sort命令用于将文本文件内容加以排序。sort可针对文本文件的内容,以行为单位来排序。sort 常见选项b 忽略每行前面开始出...
2024-12-26 21:40

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/passwd

abrt:x:173:173::/etc/abrt:/sbin/nologin

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

apache:x:48:48:Apache:/usr/share/httpd:/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

chrony:x:992:987::/var/lib/chrony:/sbin/nologin

cockpit-ws:x:990:984:User for cockpit-ws:/:/sbin/nologin

colord:x:997:994:User for colord:/var/lib/colord:/sbin/nologin

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

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

dirsrv:x:988:982:user for 389-ds-base:/usr/share/dirsrv:/sbin/nologin

dovecot:x:97:97:Dovecot IMAP server:/usr/libexec/dovecot:/sbin/nologin

dovenull:x:981:975:Dovecot's unauthorized user:/usr/libexec/dovecot:/sbin/nologin

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

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

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

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

[root@1centos ~]# sort -t: -rk 3 /etc/passwd

nobody:x:99:99:Nobody:/:/sbin/nologin

ods:x:999:999:softhsm private keys owner:/var/lib/softhsm:/sbin/nologin

polkitd:x:998:997:User for polkitd:/:/sbin/nologin

colord:x:997:994:User for colord:/var/lib/colord:/sbin/nologin

unbound:x:996:993:Unbound DNS resolver:/etc/unbound:/sbin/nologin

gluster:x:995:992:GlusterFS daemons:/run/gluster:/sbin/nologin

libstoragemgmt:x:994:991:daemon account for libstoragemgmt:/var/run/lsm:/sbin/nologin

saslauth:x:993:76:Saslauthd user:/run/saslauthd:/sbin/nologin

chrony:x:992:987::/var/lib/chrony:/sbin/nologin

geoclue:x:991:985:User for geoclue:/var/lib/geoclue:/sbin/nologin

cockpit-ws:x:990:984:User for cockpit-ws:/:/sbin/nologin

sssd:x:989:983:User for sssd:/:/sbin/nologin

dirsrv:x:988:982:user for 389-ds-base:/usr/share/dirsrv:/sbin/nologin

setroubleshoot:x:987:981::/var/lib/setroubleshoot:/sbin/nologin

saned:x:986:980:SANE scanner daemon user:/usr/share/sane:/sbin/nologin

gnome-initial-setup:x:985:979::/run/gnome-initial-setup/:/sbin/nologin

pcp:x:984:978:Performance Co-Pilot:/var/lib/pcp:/sbin/nologin

kdcproxy:x:983:977:IPA KDC Proxy User:/:/sbin/nologin

ipaapi:x:982:976:IPA Framework User:/:/sbin/nologin

dovenull:x:981:975:Dovecot's unauthorized user:/usr/libexec/dovecot:/sbin/nologin

dovecot:x:97:97:Dovecot IMAP server:/usr/libexec/dovecot:/sbin/nologin

hsqldb:x:96:96::/var/lib/hsqldb:/sbin/nologin

postfix:x:89:89::/var/spool/postfix:/sbin/nologin

dbus: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/bash

xnftp:x:1007:1007::/home/xnftp:/sbin/nologin

vuser:x:1008:1008::/opt/vuser:/sbin/nologin

tom:x:1009:1009::/home/tom:/bin/bash

jerry:x:1010:1010::/home/jerry:/bin/bash

kongkong:x:1011:1011::/home/kongkong:/bin/bash

qemu:x:107:107:qemu user:/:/sbin/nologin

operator:x:11:0:operator:/root:/sbin/nologin

usbmuxd:x:113:113:usbmuxd user:/:/sbin/nologin

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

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

ftp: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 3the

1the 2the 3the

1the 2the 3the

1the 2the 3the

1the 2the 3the

2the 2the 3the

3the 2the 3the 4the 5the

4hello hi the word world

5 2 3 4 5 6 7 8

默认排序

[root@1centos zhengzebiaodashi]# uniq the.txt

1the 2the 3the

1the 2the 3the

2the 2the 3the

3the 2the 3the 4the 5the

4hello hi the word world

5 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/bash

read -p "请输入你的数组,是空格隔开" a

shuzu=($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

最新文章
搜索引擎优化(SEO)术语表
搜索引擎优化(SEO)术语表搜索结果(search result):作为对搜索者的搜索请求的响应,搜索引擎返回匹配网页的链接,这个链接就是搜索结果。搜索引擎使用多种技术来断定哪个网页与哪个搜索请求匹配,并且根据相关程度来对自然搜索匹配结果进
幼儿园垃圾分类总结报告(优质20篇)
通过,可以向上级领导或相关人员传达信息,提供决策依据。在编写之前,首先需要明确的目的和受众,以此来确定的内容和风格。在下面的范例中,作者对研究进行了全面而准确的。为培养全体教职工、小朋友的.环保意识,让大家懂得垃圾分类回收
软和天下檀香香烟价格图片
和天下香烟大家都知道的高档香烟排行榜中,白沙和天下榜上有名,和天下也有很多种,白沙软和天下檀香多少钱一包?外包装素雅大方,烟支设计金属感很强,镂空烟嘴和天下空心烟嘴抽法也很独特。下面香烟网小编为大家整理介绍软和天下檀香香烟
震撼揭秘!三句话道破Logo的重要性,AI免费生成让你的品牌脱颖而出
在商业的海洋里,品牌就像一艘艘航行的船只,而一个出色的logo就是它们独一无二的船帆。最近有一则新闻特别吸引眼球:一家初创企业因为独特的logo设计,在短短几个月内就从众多竞争对手中脱颖而出,成为了行业内的新星。这不仅让同行们大为
蜜雪冰城开一个要多少钱,想开一个蜜雪冰城前期投入多少钱
答1、加盟费和保证金这两项费用基本上是一体的,很多品牌在收取加盟费的同时都会收取保证金的,收取的标准不同,有一万块钱的加盟费用的,也有大品牌四五万块钱加盟费的,保证金后期可以退。这两项费用加在一起是2-8万不等。当然了如果你是
纵目科技助力长安汽车新能源销量再创新高
纵目科技Zongmu Tech纵目科技是领先的自动驾驶(Autonomous  Driving)和高级汽车辅助驾驶(Advanced Driving Assistance System)产品及技术供应商,拥有领先的算法能力、完整的系统设计能力和车规级别的生产制造能力。11月29日,于重庆举办
难得干货,揭秘支付宝的2维码扫码技术优化实践之路
本文引用自“蚂蚁金服科技”公众号,原文由支付宝技术团队原创分享。 本次收录时有改动。最早接触2维码扫码功能,是在2011年,那会移动互联网正是起步阶段,大家都感觉智能手机可以更强大,但到底要做些什么
高清美女写真生成新境界:揭秘AI绘图工具的奥秘与实践攻略
NightCafe Creator:这是一款相对用户友好的AI绘图工具,能够生成多种风格的艺术作品,包括超逼真的美女写真。用户只需选择风格与输入文本,便能快速得到结果。相较于其他工具,NightCafe的社区功能也十分强大,适合喜欢分享与交流的用户。
免费追漫神器无广告版软件亮点:
免费追漫神器无广告版下载安装无论是免费阅读还是漫画资源的丰富度,都让用户感到满意。软件上的漫画类型涵盖了各种各样的题材,从热门的日漫、国漫到欧美漫画,应有尽有。而且,分类也非常详细,用户可以根据自己的喜好和需求进行选择,让
相关文章
推荐文章
发表评论
0评