
| Current Path : /proc/thread-self/root/usr/share/bash-completion/completions/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : //proc/thread-self/root/usr/share/bash-completion/completions/rpmcheck |
# bash completion for rpmcheck -*- shell-script -*-
_rpmcheck()
{
local cur prev words cword
_init_completion || return
case $prev in
-base)
_filedir
return
;;
esac
if [[ "$cur" == -* ]]; then
COMPREPLY=( $(compgen -W '-explain -failures -successes -dump
-dump-all -base -help -compressed-input' -- "$cur") )
else
_filedir
fi
} &&
complete -F _rpmcheck rpmcheck
# ex: filetype=sh