Browse Source

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

Eric Lee 6 years ago
parent
commit
92295cac37
1 changed files with 4 additions and 0 deletions
  1. 4 0
      pages/common/sort.md

+ 4 - 0
pages/common/sort.md

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