I have a issue with case sensitive directory listing in my bash. for example
$ touch nohupa nohuPb
$ ls nohup*
nohupa nohuPb
However I do expect it only list nohupa not nohuPb. because nohuPb has capital P. I don't know what variable in my .bashrc set that * works ignore case.
Any idea ?