diff --git a/cheatsheets/sort b/cheatsheets/sort index a7ace90..4c243ba 100644 --- a/cheatsheets/sort +++ b/cheatsheets/sort @@ -1,11 +1,11 @@ # To sort a file: sort file -# To sort a file by keppeing only unique: +# 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 fiule randomly: +# To sort a file randomly: sort -R file