이 스택 오버플로 답변 과이 Ubuntu 포럼 토론 스레드 에서 채택한 다음 코드 는 정의 된 모든 별칭에 대한 완료를 추가합니다.
# Automatically add completion for all aliases to commands having completion functions
function alias_completion {
local namespace="alias_completion"
# parse function based completion definitions, where capture group 2 => function and 3 => trigger
local compl_regex='complete( +[^ ]+)* -F ([^ ]+) ("[^"]+"|[^ ]+)'
# parse alias definitions, where capture group 1 => trigger, 2 => command, 3 => command arguments
local alias_regex="alias ([^=]+)='(\"[^\"]+\"|[^ ]+)(( +[^ ]+)*)'"
# create array of function completion triggers, keeping multi-word triggers together
eval "local completions=($(complete -p | sed -Ene "/$compl_regex/s//'\3'/p"))"
(( ${#completions[@]} == 0 )) && return 0
# create temporary file for wrapper functions and completions
rm -f "/tmp/${namespace}-*.tmp" # preliminary cleanup
local tmp_file; tmp_file="$(mktemp "/tmp/${namespace}-${RANDOM}XXX.tmp")" || return 1
local completion_loader; completion_loader="$(complete -p -D 2>/dev/null | sed -Ene 's/.* -F ([^ ]*).*/\1/p')"
# read in "<alias> '<aliased command>' '<command args>'" lines from defined aliases
local line; while read line; do
eval "local alias_tokens; alias_tokens=($line)" 2>/dev/null || continue # some alias arg patterns cause an eval parse error
local alias_name="${alias_tokens[0]}" alias_cmd="${alias_tokens[1]}" alias_args="${alias_tokens[2]# }"
# skip aliases to pipes, boolean control structures and other command lists
# (leveraging that eval errs out if $alias_args contains unquoted shell metacharacters)
eval "local alias_arg_words; alias_arg_words=($alias_args)" 2>/dev/null || continue
# avoid expanding wildcards
read -a alias_arg_words <<< "$alias_args"
# skip alias if there is no completion function triggered by the aliased command
if [[ ! " ${completions[*]} " =~ " $alias_cmd " ]]; then
if [[ -n "$completion_loader" ]]; then
# force loading of completions for the aliased command
eval "$completion_loader $alias_cmd"
# 124 means completion loader was successful
[[ $? -eq 124 ]] || continue
completions+=($alias_cmd)
else
continue
fi
fi
local new_completion="$(complete -p "$alias_cmd")"
# create a wrapper inserting the alias arguments if any
if [[ -n $alias_args ]]; then
local compl_func="${new_completion/#* -F /}"; compl_func="${compl_func%% *}"
# avoid recursive call loops by ignoring our own functions
if [[ "${compl_func#_$namespace::}" == $compl_func ]]; then
local compl_wrapper="_${namespace}::${alias_name}"
echo "function $compl_wrapper {
(( COMP_CWORD += ${#alias_arg_words[@]} ))
COMP_WORDS=($alias_cmd $alias_args \${COMP_WORDS[@]:1})
(( COMP_POINT -= \${#COMP_LINE} ))
COMP_LINE=\${COMP_LINE/$alias_name/$alias_cmd $alias_args}
(( COMP_POINT += \${#COMP_LINE} ))
$compl_func
}" >> "$tmp_file"
new_completion="${new_completion/ -F $compl_func / -F $compl_wrapper }"
fi
fi
# replace completion trigger by alias
new_completion="${new_completion% *} $alias_name"
echo "$new_completion" >> "$tmp_file"
done < <(alias -p | sed -Ene "s/$alias_regex/\1 '\2' '\3'/p")
source "$tmp_file" && rm -f "$tmp_file"
}; alias_completion
간단한 (명령 만, 인수가없는) 별칭의 경우 원래 완성 함수를 별칭에 할당합니다. 인수가있는 별명의 경우 추가 인수를 원래 완료 함수에 삽입하는 랩퍼 함수를 작성합니다.
이 기능면의 별칭 명령에 대한 따옴표 모두와 인수, 진화 (그러나 이전이 완료 명령으로 일치해야하고, 중첩 될 수 없습니다), 그리고 안정적으로 별칭 필터링해야 한 스크립트와는 달리 명령 목록 및 파이프 (전체 쉘 명령 행 구문 분석 논리를 다시 작성하지 않고 파이프 에서 완료 할 항목을 찾을 수 없으므로 건너 뜁니다).
용법
코드를 쉘 스크립트 파일로 저장하고 함수 도매 (또는 해당 도트 파일 )에 복사하거나 소스로 복사하십시오 . 중요한 것은 bash 완료와 별칭 정의가 모두 설정된 후에 함수를 호출하는 것입니다 (위의 코드는 정의 직후에 "소스 및 잊어 버림"정신으로 함수를 호출하지만 호출이 있으면 다운 스트림으로 이동할 수 있습니다) 더 잘 맞습니다). 종료 후 환경에서 함수를 원하지 않으면 함수를 호출 한 후 추가 할 수 있습니다 ..bashrc
unset -f alias_completion
노트
당신이 사용하는 경우 bash
4.1 이상을 동적으로로드 된 완성을 사용하는 스크립트는 사용자의 별칭 래퍼 기능을 구축 할 수 있도록 별칭이 모든 명령에 대한 부하 완료하려고합니다.
bash --version
이것을 얻으려면 btw (-v
다른 출력을 사용하지 마십시오 ).