Tuesday, 9 April 2019

bash - How to make cd arguments case INsensitive?


Possible Duplicate:
Make bash’s tab-completion case-insensitive



Sometimes while accessing the various directories it happens most of the times that i remember the names or at least part of the names of a directory under our Linux system. But some of the directories are named starting with first character caps or one of the characters in the middle of the name Upper case.


Can anyone suggest how can i make the arguments following cd command case INSENSITIVE, such that if i perform cd BackupDirectory or cd backupdirectory it could enter the directory name BackupDirectory.


Ofcourse i don't want to screw the things for other users so if the above is possible, is that possible that the change could be applied just to the session i am using and do not effect other users?


OK, i tried bind "set completion-ignore-case on" but this just doesn't work. It just helps in the way if i type cd b and [tab] [tab] or [esc] [esc] it fills the directory name ignoring the case. But, what i need is if i do a cd backupdirectory, it just ignores the case and enters BackupDirectory on its own.

No comments:

Post a Comment

How can I VLOOKUP in multiple Excel documents?

I am trying to VLOOKUP reference data with around 400 seperate Excel files. Is it possible to do this in a quick way rather than doing it m...