1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-25 22:15:25 +02:00

sort: add --ignore-case example (#2611)

This commit is contained in:
Eric Lee 2018-11-26 04:29:28 +08:00 committed by Owen Voke
parent 4ae6029176
commit 92295cac37

View file

@ -10,6 +10,10 @@
`sort -r {{filename}}`
- Sort a file in case-insensitive way:
`sort --ignore-case {{filename}}`
- Sort a file using numeric rather than alphabetic order:
`sort -n {{filename}}`