bash-completion: add --zero to rev module

Addresses: https://github.com/util-linux/util-linux/pull/1900
Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2022-11-16 08:48:43 +01:00
parent 076b26447a
commit 1e6393de06

View file

@ -11,7 +11,7 @@ _rev_module()
esac
case $cur in
-*)
OPTS="--version --help"
OPTS="--version --help --zero"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;