mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-14 08:01:16 +01:00
11 lines
179 B
Text
11 lines
179 B
Text
# To sort a file:
|
|
sort file
|
|
|
|
# To sort a file by keeping only unique:
|
|
sort -u file
|
|
|
|
# To sort a file and reverse the result:
|
|
sort -r file
|
|
|
|
# To sort a file randomly:
|
|
sort -R file
|