/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.2
completions/removepkg
23 строки
568 B
Igor Murzov
Cleanups: Be consistent, use $( foo ) instead of $(foo).
21 ноя 2011, 00:46
21 ноя 2011, 00:46
2e859f1
Код
Авторство
О чём код?
# Slackware Linux removepkg completion -*- shell-script -*- _removepkg() { local cur prev words cword _init_completion || return if [[ "$cur" == -* ]]; then COMPREPLY=( $( compgen -W '-copy -keep -preserve -warn' -- "$cur" ) ) return fi if [[ "$cur" == */* ]]; then _filedir return fi local root=${ROOT:-/} COMPREPLY=( $( cd "$root/var/log/packages" 2> /dev/null || return 1; \ compgen -f -- "$cur" ) ) } && complete -F _removepkg removepkg # ex: ts=4 sw=4 et filetype=sh