mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
sort: swap examples to introduce options gradually
This commit is contained in:
parent
616f92d719
commit
8eadb597a6
1 changed files with 4 additions and 4 deletions
|
@ -10,14 +10,14 @@
|
|||
|
||||
`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 -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 -u {{filename}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue