Merge pull request #84 from maggick/patch-11

Create sort
This commit is contained in:
Chris Lane 2013-09-13 17:52:29 -07:00
commit 54547459b2
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 keeping only unique:
sort -u file
# To sort a file and reverse the result:
sort -r file
# To sort a file randomly:
sort -R file