1. 程式人生 > >linux下的sort、uniq、join的使用

linux下的sort、uniq、join的使用

去除 列數 tro 可見 ron family style 小寫字母 vertica

>>>Sort 命令常用相關選項:

選項

說明

-c

會檢查文件順序是否已排好序,如果亂序,則輸出第一個亂序的行的相關信息,然後返回1

-k

指定排序的列數

-b

忽略每一行前面所有的空白行,從第一個可見的字符開始比較

-f

將小寫字母都轉換成大寫字母進行排序

-r

反轉降序

-u

去除重復行

-o

輸出命名,重定向

-n

按字符來排序

-t

指定分隔符

-M

以月份排序







[root@localhost ~]#cat a.txt b.txt

1 abc

2 def

3 fun

4 hello

-------

1 beijing

2 we

3 fongguang

4

[root@localhost ~]#join a.txt b.txt

1 abc beijing

2 def we

3 fun fongguang

4 hello


linux下的sort、uniq、join的使用