From:http://www.xiaoxiaozi.com/2009/12/01/1652/

sort的作用与用法

NAME
sort - sort lines of text files
SYNOPSIS
sort [OPTION] ... [FILE] ...
DESCRIPTION
Write sorted concatenation of all FILE(s) to standard output.
 
简单测试文件:demo.txt
1
3
4
6
9
8
7
2
5
10
为了不占用太多空间造成浪费,我将结果以一行的形式展现给大家,勿怪~
sort demo.txt
#1  10  2  3  4  5  6  7  8  9  
 
sort -n demo.txt
#1  2  3  4  5  6  7  8  9  10
 
sort -nr demo.txt
#10  9  8  7  6  5  4  3  2  1