sort命令用于文本文件的排序。
sort
下面是example.txt文件的内容。
example.txt
f b c g a e d
执行sort命令对其进行排序。
$ sort example.txt a b c d e f g
-R参数表示随机排序。
-R
sort -R example.txt b d a c g e f