sort: swap examples to introduce options gradually

This commit is contained in:
Waldir Pimenta 2016-05-10 14:12:37 +01:00
parent 616f92d719
commit 8eadb597a6

View File

@ -10,14 +10,14 @@
`sort -r {{filename}}` `sort -r {{filename}}`
- Sort the passwd file by the 3rd field, numerically:
`sort -t: -k 3n /etc/passwd`
- Sort a file using numeric rather than alphabetic order: - Sort a file using numeric rather than alphabetic order:
`sort -n {{filename}}` `sort -n {{filename}}`
- Sort the passwd file by the 3rd field, numerically:
`sort -t: -k 3n /etc/passwd`
- Sort a file preserving only unique lines: - Sort a file preserving only unique lines:
`sort -u {{filename}}` `sort -u {{filename}}`