case insensitivity (rather a wish than a bug)
Bastian Fuchs <[email protected]>
| Newsgroups | gmane.comp.gnu.fileutils.bugs |
|---|---|
| Message-ID | <[email protected]> |
Hello, it would be nice, if there is an option to sort alphabetically WITHOUT consideration of upper oder lower case. This is the standard output of ls -l: -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 FIRST_EXAMPLE -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 SECOND_EXAMPLE -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 first_example -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 second_example It would be nice, if ls -l --sort=caseinsensitivity for example would show: -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 FIRST_EXAMPLE -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 first_example -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 SECOND_EXAMPLE -rw-r--r-- 1 bastiaf users 0 Sep 8 01:36 second_example - Bastian