mirror of
https://github.com/Erreur32/cheat.git
synced 2025-01-08 22:02:00 +01:00
12 lines
181 B
Text
12 lines
181 B
Text
|
# 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
|