darbe
set completion-ignore-case on
içinde ~/.inputrc
(veya bind 'set completion-ignore-case on'
içinde ~/.bashrc
) benim tavsiye olacaktır. Tam adı yazacaksanız, neden birkaç Shifttuşa basarsınız ?
Ancak gerçekten isterseniz, cd
tam bir eşleşme için uğraşan bir sarıcı var ve eğer yoksa, büyük / küçük harfe duyarlı olmayan bir eşleşme arar ve benzersizse gerçekleştirir. Büyük / nocaseglob
küçük harf duyarsız globbing için kabuk seçeneğini kullanır ve argümanı ekleyerek @()
(hiçbir şeyle eşleşmez ve gerektirir extglob
) bir glob haline getirir . extglob
Seçenek aksi bash bile ayrıştırmak olamaz fonksiyonu tanımlarken açık olması gerekiyor. Bu işlev desteklenmiyor 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
Ben oradayken, ksh93 için benzer bir işlev var. Büyük / ~(i)
küçük harfe duyarlı olmayan eşleme için değiştirilen değişiklik /
yalnızca dizinleri eşleştirmek için sonekle uyumsuz görünüyor (bu benim ksh sürümümde bir hata olabilir). Bu yüzden, dizin olmayanları ayıklamak için farklı bir strateji kullanıyorum.
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
Son olarak, burada bir zsh sürümü var. Yine, büyük / küçük harfe duyarsız tamamlamaya izin vermek muhtemelen en iyi seçenektir. Tam ayar eşleşmesi yoksa aşağıdaki ayar büyük / küçük harf duyarsız globbing'e geri döner:
zstyle ':completion:*' '' matcher-list 'm:{a-z}={A-Z}'
''
Tam büyük / küçük harf eşleşmesi olsa bile büyük / küçük harfe duyarlı olmayan eşleşmeleri göstermek için kaldırın . Bunu, menü arayüzünden ayarlayabilirsiniz 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
vebackUp
nasıl olacağınıbackup
hiç hangi dizin için gitmek istediğiniz?