/
niceSOFT
/
util-linux
Обзор
Документация
Войти
/
niceSOFT
/
util-linux
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
bash-completion/script
59 строк
1 KB
Sami Kerola
bash-completion: update script, scriptlive, and scriptreplay files
11 дек 2019, 22:19
Не верифицирован
11 дек 2019, 22:19
6b62a60
Код
Авторство
О чём код?
_script_module() { local cur prev OPTS COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in '-c'|'--command') compopt -o bashdefault COMPREPLY=( $(compgen -c -- $cur) ) return 0 ;; '-E'|'--echo') COMPREPLY=( $(compgen -W "auto always never" -- $cur) ) return 0 ;; '-o'|'--output-limit') COMPREPLY=( $(compgen -W "size" -- $cur) ) return 0 ;; '-m'|'--logging-format') COMPREPLY=( $(compgen -W "classic advanced" -- $cur) ) return 0 ;; '-h'|'--help'|'-V'|'--version') return 0 ;; esac case $cur in '=') cur=${cur#=} ;; -*) OPTS="--append --command --echo --log-in --log-out --log-io --log-timing --logging-format --return --flush --force --quiet --output-limit --timing= --version --help" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;; esac local IFS=$'\n' compopt -o filenames COMPREPLY=( $(compgen -f -- $cur) ) return 0 } complete -F _script_module script