cheat/cheatsheets/sort
Matthieu Keller acb1a827ec Create sort
2013-09-08 15:23:00 +02:00

12 lines
181 B
Plaintext

# To sort a file:
sort file
# To sort a file by keppeing only unique:
sort -u file
# To sort a file and reverse the result:
sort -r file
# To sort a fiule randomly:
sort -R file