linux命令之——sort

更新日期:2021-10-15

来源:纯净之家


系统大全为您提供
 名称:sort
位置:/usr/bin/sort
权限:所有用户
用法: sort [OPTION]... [FILE]... 
sort [OPTION]... --files0-from=F
选项:
-b --ignore-leading-blanks 忽略最前面的空格
-f --ignore-case fold lower case to upper case characters 忽略字母的大小写
-M --month-sort compare (unknown) < `JAN' < ... < `DEC' 以月份的名字来排序
-n --numeric-sort compare according to string numerical value 以纯数字排序 (默认以文本类型排序)
 
$ cat a
11
32
5
1
4
3

$ sort a
1
11
3
32
4
5

$ sort -n a
1
3
4
5
11
32

          -u      --unique  相同的数据中,仅出现一行
$ cat a
1
3
5
1
3

$ sort -u a
1
3
5

-t --field-separator=SEP use SEP instead of non-blank to blank transition 指定分隔符,默认以TAB为分隔符
-k --key=POS1[,POS2] start a key at POS1 (origin 1), end it at POS2 (default end of line). See POS syntax below
 
指定排序的区间
以冒号":"作为分隔符的第一个字段排序
 
head /etc/passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/bin


bin:x:2:2:bin:/bin:/bin


sys:x:3:3:sys:/dev:/bin


sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/bin


man:x:6:12:man:

ar/cache/man:/bin


lp:x:7:7:lp:

ar/spool/lpd:/bin


mail:x:8:8:mail:

ar/mail:/bin


news:x:9:9:news:

ar/spool/news:/bin



$ head /etc/passwd| sort -t ":" -k 1
bin:x:2:2:bin:/bin:/bin


daemon:x:1:1:daemon:/usr/sbin:/bin


games:x:5:60:games:/usr/games:/bin


lp:x:7:7:lp:

ar/spool/lpd:/bin


mail:x:8:8:mail:

ar/mail:/bin


man:x:6:12:man:

ar/cache/man:/bin


news:x:9:9:news:

ar/spool/news:/bin


root:x:0:0:root:/root:/bin/bash
sync:x:4:65534:sync:/bin:/bin/sync
sys:x:3:3:sys:/dev:/bin



以下这个例子可以看出-n的重要性了
$ cat a
pa:11:a
sa:32:c
app:5:b
stort:1:d
pear:4:aa
hello:3:f

$ cat a |sort -t ":" -k 2 
pa:11:a
stort:1:d
sa:32:c
hello:3:f
pear:4:aa
app:5:b

$ cat a |sort -t ":" -k 2 -n 
stort:1:d
hello:3:f
pear:4:aa
app:5:b
pa:11:a
sa:32:c  
 
  以上就是系统大全给大家介绍的如何使的方法都有一定的了解了吧,好了,如果大家还想了解更多的资讯,那就赶紧点击系统大全官网吧。
本文来自系统大全http://www.win7cn.com/如需转载请注明!推荐:win7纯净版