summaryrefslogtreecommitdiff
path: root/completions/hid2hci
diff options
context:
space:
mode:
Diffstat (limited to 'completions/hid2hci')
-rw-r--r--completions/hid2hci15
1 files changed, 15 insertions, 0 deletions
diff --git a/completions/hid2hci b/completions/hid2hci
new file mode 100644
index 00000000..4e2ef039
--- /dev/null
+++ b/completions/hid2hci
@@ -0,0 +1,15 @@
+# hid2hci completion -*- shell-script -*-
+
+_hid2hci()
+{
+ local cur prev words cword
+ _init_completion || return
+
+ if [[ "$cur" == -* ]]; then
+ COMPREPLY=( $( compgen -W '--help --quiet -0 --tohci -1 \
+ --tohid' -- "$cur" ) )
+ fi
+} &&
+complete -F _hid2hci hid2hci
+
+# ex: ts=4 sw=4 et filetype=sh