जवाबों:
इसे / etc / bash_completion द्वारा नियंत्रित किया जाता है
यदि आपको यह पसंद नहीं है, तो आप विस्तार कोड _expand () में टिप्पणी कर सकते हैं।
यहाँ फेडोरा 17 में मेरा संस्करण है, लेकिन आपका समान होना चाहिए:
# This function expands tildes in pathnames
#
_expand()
{
# FIXME: Why was this here?
#[ "$cur" != "${cur%\\}" ] && cur="$cur\\"
# Expand ~username type directory specifications. We want to expand
# ~foo/... to /home/foo/... to avoid problems when $cur starting with
# a tilde is fed to commands and ending up quoted instead of expanded.
if [[ "$cur" == \~*/* ]]; then
eval cur=$cur
elif [[ "$cur" == \~* ]]; then
cur=${cur#\~}
COMPREPLY=( $( compgen -P '~' -u "$cur" ) )
[ ${#COMPREPLY[@]} -eq 1 ] && eval COMPREPLY[0]=${COMPREPLY[0]}
return ${#COMPREPLY[@]}
fi
}
function _expand() { :;}
में परिभाषित करके मेरी समस्या "तय" है ~/.bashrc
।
bash
कुछ आदेशों के लिए अधिक परिष्कृत स्वतः पूर्णता प्रदान कर सकते हैं (उदाहरण के लिए फ़ाइल नामों के अलावा अन्य प्रोग्राम तर्क)। आपके सिस्टम पर कमांड के लिए इस तरह का एक प्रोग्रामेबल कम्प्लीशन फंक्शन vim
है।
complete
कमांड प्रॉम्प्ट पर टाइप करने से आपको पता चलेगा कि कौन-कौन से फ़ंक्शंस का उपयोग ऑटोकॉमप्लेक्शन प्रदान करने के लिए किया जाता है bash
।
$ complete
complete -o default -F _complete_open open
type function_name
उनकी परिभाषा के बारे में जानने के लिए टाइप करें।
$ type _complete_open
_complete_open is a function
_complete_open ()
{
# function definition
}
यह पता लगाने के लिए कि फ़ंक्शन कहाँ परिभाषित किया गया था। निम्न का उपयोग करें:
$ shopt -s extdebug
$ declare -F _complete_open
_complete_open 70 /Users/danielbeck/.bash_profile