Create sort

This commit is contained in:
Matthieu Keller 2013-09-08 15:23:00 +02:00
parent 64cba079f9
commit acb1a827ec
1 changed files with 11 additions and 0 deletions

11
cheatsheets/sort Normal file
View File

@ -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