sort.md: sync linux & common versions

waldyrious/alt-syntax
Waldir Pimenta 2016-05-10 14:16:03 +01:00
parent 8eadb597a6
commit 894921a9e2
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@
`sort -r {{filename}}`
- 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`