sort.md: improve example descriptions

waldyrious/alt-syntax
Waldir Pimenta 2016-05-10 14:09:55 +01:00
parent 8bcb307d6c
commit 616f92d719
1 changed files with 2 additions and 2 deletions

View File

@ -10,11 +10,11 @@
`sort -r {{filename}}`
- Sort passwd file by the 3rd field:
- Sort the passwd file by the 3rd field, numerically:
`sort -t: -k 3n /etc/passwd`
- Sort a file as number in ascending order:
- Sort a file using numeric rather than alphabetic order:
`sort -n {{filename}}`