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