दे घुमा के
set completion-ignore-case on
में ~/.inputrc
(या bind 'set completion-ignore-case on'
में ~/.bashrc
) मेरी सिफारिश की जाएगी। यदि आप पूरा नाम टाइप करने जा रहे हैं, तो Shiftकुंजी के कुछ प्रेस पर क्यों ?
लेकिन अगर आप वास्तव में यह चाहते हैं, तो यहां एक रैपर है cd
जो एक सटीक मैच के लिए कोशिश करता है, और यदि कोई नहीं है, तो केस-असंवेदनशील मैच की तलाश करता है और यह अद्वितीय होने पर करता है। यह nocaseglob
केस-असंवेदनशील ग्लोबिंग के लिए शेल विकल्प का उपयोग करता है , और तर्क को एक ग्लोब में जोड़कर बदल देता है @()
(जो कुछ भी नहीं मिलता है, और आवश्यकता होती है extglob
)। extglob
विकल्प अन्यथा पार्टी भी यह पार्स नहीं कर सकता, जब समारोह को परिभाषित करने पर दिया जाना है। यह फ़ंक्शन समर्थन नहीं करता है CDPATH
।
shopt -s extglob
cd () {
builtin cd "$@" 2>/dev/null && return
local options_to_unset=; local -a matches
[[ :$BASHOPTS: = *:extglob:* ]] || options_to_unset="$options_to_unset extglob"
[[ :$BASHOPTS: = *:nocaseglob:* ]] || options_to_unset="$options_to_unset nocaseglob"
[[ :$BASHOPTS: = *:nullglob:* ]] || options_to_unset="$options_to_unset nullglob"
shopt -s extglob nocaseglob nullglob
matches=("${!#}"@()/)
shopt -u $options_to_unset
case ${#matches[@]} in
0) # There is no match, even case-insensitively. Let cd display the error message.
builtin cd "$@";;
1)
matches=("$@" "${matches[0]}")
unset "matches[$(($#-1))]"
builtin cd "${matches[@]}";;
*)
echo "Ambiguous case-insensitive directory match:" >&2
printf "%s\n" "${matches[@]}" >&2
return 3;;
esac
}
क्ष
जब मैं इस पर हूँ, यहाँ ksh93 के लिए एक समान कार्य है। ~(i)
केस-संवेदी मिलान के लिए संशोधित के साथ असंगत प्रतीत हो रहा है /
प्रत्यय केवल निर्देशिका मैच के लिए (इस ksh की मेरी रिहाई में एक बग हो सकता है)। इसलिए मैं एक अलग रणनीति का उपयोग करता हूं, गैर-निर्देशिकाओं को बाहर करने के लिए।
cd () {
command cd "$@" 2>/dev/null && return
typeset -a args; typeset previous target; typeset -i count=0
args=("$@")
for target in ~(Ni)"${args[$(($#-1))]}"; do
[[ -d $target ]] || continue
if ((count==1)); then printf "Ambiguous case-insensitive directory match:\n%s\n" "$previous" >&2; fi
if ((count)); then echo "$target"; fi
((++count))
previous=$target
done
((count <= 1)) || return 3
args[$(($#-1))]=$target
command cd "${args[@]}"
}
Zsh
अंत में, यहाँ एक zsh संस्करण है। फिर, केस-असंवेदनशील पूर्णता की अनुमति देना संभवतः सबसे अच्छा विकल्प है। निम्न सेटिंग केस-असंवेदनशील ग्लोबिंग पर वापस आती है यदि कोई सटीक केस मैच न हो:
zstyle ':completion:*' '' matcher-list 'm:{a-z}={A-Z}'
''
सभी केस-असंवेदनशील मैचों को दिखाने के लिए निकालें, भले ही एक सटीक केस मैच हो। आप इसे मेनू इंटरफ़ेस से सेट कर सकते हैं compinstall
।
cd () {
builtin cd "$@" 2>/dev/null && return
emulate -L zsh
setopt local_options extended_glob
local matches
matches=( (#i)${(P)#}(N/) )
case $#matches in
0) # There is no match, even case-insensitively. Try cdpath.
if ((#cdpath)) &&
[[ ${(P)#} != (|.|..)/* ]] &&
matches=( $^cdpath/(#i)${(P)#}(N/) ) &&
((#matches==1))
then
builtin cd $@[1,-2] $matches[1]
return
fi
# Still nothing. Let cd display the error message.
builtin cd "$@";;
1)
builtin cd $@[1,-2] $matches[1];;
*)
print -lr -- "Ambiguous case-insensitive directory match:" $matches >&2
return 3;;
esac
}
backUP
औरbackUp
, कैसे होगाbackup
कोई जो निर्देशिका में आप जाना चाहते हैं?