From: Christian Goeschel Ndjomouo Date: Mon, 24 Nov 2025 04:01:30 +0000 (-0500) Subject: bash-completion: (mountpoint) add missing --show option X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=661798cf3170d6c74fce5511194470d37876f7c2;p=thirdparty%2Futil-linux.git bash-completion: (mountpoint) add missing --show option Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/bash-completion/mountpoint b/bash-completion/mountpoint index 15c6d2314..cca764517 100644 --- a/bash-completion/mountpoint +++ b/bash-completion/mountpoint @@ -11,7 +11,7 @@ _mountpoint_module() esac case $cur in -*) - OPTS="--quiet --nofollow --fs-devno --devno --help --version" + OPTS="--quiet --nofollow --fs-devno --devno --show --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;;