From d4a40a9b203efbc7dc1746471d406d37e2205556 Mon Sep 17 00:00:00 2001 From: Matthieu Keller Date: Sun, 8 Sep 2013 15:43:25 +0200 Subject: [PATCH] Update sort --- cheatsheets/sort | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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