From: Christian Goeschel Ndjomouo Date: Fri, 31 Oct 2025 17:24:12 +0000 (-0400) Subject: bash-completion: (uuidd) add missing --cont-clock X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=347dbbdc6498d6df8fdeb8aa5d6f967edaa6d833;p=thirdparty%2Futil-linux.git bash-completion: (uuidd) add missing --cont-clock Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/bash-completion/uuidd b/bash-completion/uuidd index c8f6697c9..d827454a0 100644 --- a/bash-completion/uuidd +++ b/bash-completion/uuidd @@ -29,7 +29,21 @@ _uuidd_module() esac case $cur in -*) - OPTS="--pid --socket --timeout --kill --random --time --uuids --no-pid --no-fork --socket-activation --debug --quiet --version --help" + OPTS="--cont-clock + --pid + --socket + --timeout + --kill + --random + --time + --uuids + --no-pid + --no-fork + --socket-activation + --debug + --quiet + --version + --help" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;;