/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.17.0
completions/file
34 строки
852 B
Koichi Murase
fix: use _comp_compgen for COMPREPLY=($(compgen ... -- "$cur")) (v2)
09 май 2023, 03:15
09 май 2023, 03:15
18723c8
Код
Авторство
О чём код?
# file(1) completion -*- shell-script -*- _comp_cmd_file() { local cur prev words cword comp_args _comp_initialize -- "$@" || return local noargopts='!(-*|*[Fmfe]*)' # shellcheck disable=SC2254 case $prev in --help | --version | --separator | -${noargopts}[vF]) return ;; --magic-file | --files-from | -${noargopts}[mf]) _comp_compgen_filedir return ;; --exclude | -${noargopts}e) _comp_compgen -- -W 'apptype ascii cdf compress elf encoding soft tar text tokens troff' return ;; esac if [[ $cur == -* ]]; then _comp_compgen_help return fi _comp_compgen_filedir } && complete -F _comp_cmd_file file # ex: filetype=sh