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