From: Christian Goeschel Ndjomouo Date: Fri, 31 Oct 2025 17:25:29 +0000 (-0400) Subject: bash-completion: (whereis) add missing long options X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8835586c23f8906952481e1b96611e1f9b4c62f;p=thirdparty%2Futil-linux.git bash-completion: (whereis) add missing long options Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/bash-completion/whereis b/bash-completion/whereis index 7db67a398..55c6d2dfd 100644 --- a/bash-completion/whereis +++ b/bash-completion/whereis @@ -17,7 +17,7 @@ _whereis_module() esac case $cur in -*) - OPTS="-b -B -m -M -s -S -f -u -l -g" + OPTS="-b -B -m -M -s -S -f -u -l -g --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0 ;;