From 520a82f14fb896d67b18017cf7d8165dafc25297 Mon Sep 17 00:00:00 2001 From: andre Date: Sat, 29 Nov 2025 22:35:31 +0100 Subject: [PATCH] =?UTF-8?q?rootfs/etc/bash=5Fcompletion.d/owi2-completion.?= =?UTF-8?q?bash=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rootfs/etc/bash_completion.d/owi2-completion.bash | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 rootfs/etc/bash_completion.d/owi2-completion.bash 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