summaryrefslogtreecommitdiffstats
path: root/completions/yum-arch
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--completions/yum-arch16
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