diff options
Diffstat (limited to 'completions/yum-arch')
-rw-r--r-- | completions/yum-arch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/completions/yum-arch b/completions/yum-arch new file mode 100644 index 0000000..883c77e --- /dev/null +++ b/completions/yum-arch @@ -0,0 +1,16 @@ +# yum-arch(8) completion -*- shell-script -*- + +_yum_arch() +{ + local cur prev words cword + _init_completion || return + + if [[ $cur == -* ]]; then + COMPREPLY=($(compgen -W '-d -v -vv -n -c -z -s -l -q' -- "$cur")) + else + _filedir -d + fi +} && + complete -F _yum_arch yum-arch + +# ex: filetype=sh |