1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:33:50 +02:00

sort.md: improve example descriptions

This commit is contained in:
Waldir Pimenta 2016-05-10 14:09:55 +01:00
parent 8bcb307d6c
commit 616f92d719

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}}`