Comment 2 for bug 1581164

Revision history for this message
Ulf (ulf-bremer) wrote :

may a more illustrative test is:

ls -l test TEST; touch test; ls -l test TEST; ls -l | grep -i test
ls: cannot access 'test': No such file or directory
ls: cannot access 'TEST': No such file or directory
-rwxrwxrwx 1 root root 0 Mai 12 20:19 test
-rwxrwxrwx 1 root root 0 Mai 12 20:19 TEST
-rwxrwxrwx 1 root root 0 Mai 12 20:19 test

rm test

ls -l test TEST; touch TEST; ls -l test TEST; ls -l | grep -i test
ls: cannot access 'test': No such file or directory
ls: cannot access 'TEST': No such file or directory
-rwxrwxrwx 1 root root 0 Mai 12 20:19 test
-rwxrwxrwx 1 root root 0 Mai 12 20:19 TEST
-rwxrwxrwx 1 root root 0 Mai 12 20:19 TEST

so the file gets created with the right upper and lowercase-ing but it can be accessed and deleted either way (lower or upper case)