文件处理--sort命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件处理--sort命令相关的知识,希望对你有一定的参考价值。
sort-sort lines of text files
按照文件的行进行排序,以行为单位。以首字母开始按照ASCII码升序进行比较。
[[email protected] ~]# cat test.txt
aaa 111 222
ccc 333 444
aaa 111 222
ggg 555 666
bbb 777 888
eee 999 000
[[email protected] ~]# sort test.txt
aaa 111 222
aaa 111 222
bbb 777 888
ccc 333 444
eee 999 000
ggg 555 666
[[email protected] ~]#
[[email protected] ~]# sort -u test.txt #去重
aaa 111 222
bbb 777 888
ccc 333 444
eee 999 000
ggg 555 666
[[email protected] ~]# sort -r test.txt #反向排序
ggg 555 666
eee 999 000
ccc 333 444
bbb 777 888
aaa 111 222
aaa 111 222
[[email protected] ~]# sort -n -k 2 -t" " test.txt #-t表示按照什么分隔,-k取第几列排序,-n以数字进行排序
aaa 111 222
aaa 111 222
ccc 333 444
ggg 555 666
bbb 777 888
eee 999 000
[[email protected] ~]#
以上是关于文件处理--sort命令的主要内容,如果未能解决你的问题,请参考以下文章
Oracle 数据库 - 使用UEStudio修改dmp文件版本号,解决imp命令恢复的数据库与dmp本地文件版本号不匹配导致的导入失败问题,“ORACLE error 12547”问题处理(代码片段