diff --git a/rootfs/etc/bash_completion.d/owi2-completion.bash b/rootfs/etc/bash_completion.d/owi2-completion.bash new file mode 100644 index 0000000..c7a9306 --- /dev/null +++ b/rootfs/etc/bash_completion.d/owi2-completion.bash @@ -0,0 +1,8 @@ +_owi2_completions() +{ + local cur + COMPREPLY=() + cur=${COMP_WORDS[COMP_CWORD]} + COMPREPLY=($(compgen -W '--help --check --kfz --preflight --run all --stats --replay' -- $cur)) +} +complete -F _owi2_completions owi2