Linux sort命令:对文件中的数据进行排序
使用sort命令可以对文件中的数据进行排序,并将结果显示在标准输出上。
sort [选项] [文件]
命令中各选项的含义如表所示。
[root@rhel ~]# cat textfile1
a
b
c
//查看文件textfile1的文件内容
[root@rhel ~]# sort textfile1
a
b
c
[root@rhel ~]# sort -r textfile1
c
b
a
本文链接:http://so.lmcjl.com/news/18511/