mirror of
https://github.com/cheat/cheat.git
synced 2025-10-09 04:02:54 +02:00
12 lines
181 B
Plaintext
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
|