# Case insensitive cd


Do I want this?

    % ls -ld Joe_Cocker_-_The_Definitive_Collection 
    drwxr-xr-x 2 miekg admin 4.0K Jul 20 22:20 Joe_Cocker_-_The_Definitive_Collection/
    % cd *joe*
    cd: no such file or directory: *joe*
    % unsetop case_glob 
    % cd *joe*
    % pwd
    /shared/vol/music/J/Joe_Cocker_-_The_Definitive_Collection


