From: Ville Skyttä Date: Fri, 16 Apr 2021 19:08:48 +0000 (+0300) Subject: bash-completion: (lsblk) fix -E/-M arg (non-)completion X-Git-Tag: v2.37-rc2~61^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ca59e01e39767e8a4b77c3c13cb311c722930f48;p=thirdparty%2Futil-linux.git bash-completion: (lsblk) fix -E/-M arg (non-)completion Signed-off-by: Ville Skyttä --- diff --git a/bash-completion/lsblk b/bash-completion/lsblk index 998d99ea00..731ef3f409 100644 --- a/bash-completion/lsblk +++ b/bash-completion/lsblk @@ -31,7 +31,7 @@ _lsblk_module() COMPREPLY=( $(compgen -P "$prefix" -W "${MAJOR:-""}" -S ',' -- $realcur) ) return 0 ;; - '-o'|'--output'|'-M'|'--dedup') + '-o'|'--output'|'-E'|'--dedup') local prefix realcur LSBLK_COLS realcur="${cur##*,}" prefix="${cur%$realcur}"