バッシュ
set completion-ignore-case on
で~/.inputrc
(またはbind 'set completion-ignore-case on'
で~/.bashrc
)私の推薦になるでしょう。フルネームを入力するのであれば、なぜShiftキーを数回押すだけなのか?
しかし、本当に必要cd
な場合は、完全一致を試行するラッパーが次のようになり、一致がない場合は、大文字と小文字を区別しない一致を探し、それが一意である場合はそれを実行します。nocaseglob
大文字と小文字を区別しないグロビングにシェルオプションを使用し、追加によって引数をグロブに変換します@()
(何にも一致せず、が必要ですextglob
)。このextglob
オプションは、関数を定義するときにオンにする必要があります。そうしないと、bashはそれを解析できません。この関数はをサポートしていません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
}
Ksh
その間、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
、あなたが行きたいディレクトリにありませんか?