Update sort

This commit is contained in:
Matthieu Keller 2013-09-08 15:43:25 +02:00
parent acb1a827ec
commit d4a40a9b20
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
# To sort a file: # To sort a file:
sort file sort file
# To sort a file by keppeing only unique: # To sort a file by keeping only unique:
sort -u file sort -u file
# To sort a file and reverse the result: # To sort a file and reverse the result:
sort -r file sort -r file
# To sort a fiule randomly: # To sort a file randomly:
sort -R file sort -R file