数字排序

假设我们有这个文件:

test>>cat file
10.Gryffindor
4.Hogwarts
2.Harry
3.Dumbledore
1.The sorting hat

要以数字方式对此文件进行排序,请使用带 -n 选项的 sort:

test>>sort -n file  

这应该按如下方式对文件进行排序:

1.The sorting hat  
2.Harry  
3.Dumbledore  
4.Hogwarts  
10.Gryffindor

反转排序顺序:要反转排序顺序,请使用 -r 选项

要反转上述文件的排序顺序,请使用:

sort -rn file

这应该按如下方式对文件进行排序:

10.Gryffindor
4.Hogwarts
3.Dumbledore
2.Harry
1.The sorting hat