mirror of https://github.com/cheat/cheat.git
Create sort
This commit is contained in:
parent
64cba079f9
commit
acb1a827ec
|
@ -0,0 +1,11 @@
|
|||
# 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
|
Loading…
Reference in New Issue