diff options
author | David Starks-Browning <starksb@ebi.ac.uk> | 2001-09-23 11:19:13 +0000 |
---|---|---|
committer | David Starks-Browning <starksb@ebi.ac.uk> | 2001-09-23 11:19:13 +0000 |
commit | 991f7832e6a032ebc0a7ff66597e9f31aabb7e5b (patch) | |
tree | ffc94f1826616052e8aa0a027fa1b2d47ca00c40 | |
parent | b66101cda73eaa559683bd448d4c64de621ff278 (diff) | |
download | cygnal-991f7832e6a032ebc0a7ff66597e9f31aabb7e5b.tar.gz cygnal-991f7832e6a032ebc0a7ff66597e9f31aabb7e5b.tar.bz2 cygnal-991f7832e6a032ebc0a7ff66597e9f31aabb7e5b.zip |
expand entry "How can I get bash filename completion to be case insensitive?"
-rw-r--r-- | winsup/doc/how-using.texinfo | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/winsup/doc/how-using.texinfo b/winsup/doc/how-using.texinfo index 7161d4865..bbde4de08 100644 --- a/winsup/doc/how-using.texinfo +++ b/winsup/doc/how-using.texinfo @@ -73,7 +73,17 @@ mounted as / in Cygwin. @subsection How can I get bash filename completion to be case insensitive? -"shopt -s nocaseglob" should do the trick. +Add the following to your @code{~/.bashrc} file: + +@example + shopt -s nocaseglob +@end example + +and add the following to your @code{~/.inputrc} file: + +@example + set completion-ignore-case on +@end example @subsection Can I use paths/filenames containing spaces in them? |