소스 검색

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

Eric Lee 6 년 전
부모
커밋
92295cac37
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  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}}`