From: Masatake YAMATO Date: Tue, 30 Jul 2024 05:05:00 +0000 (+0900) Subject: fadvise: fix a typo of an option name in the bash completion rule X-Git-Tag: v2.42-start~249^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb8d503a3f9617506af947b2f1f885293daab5fa;p=thirdparty%2Futil-linux.git fadvise: fix a typo of an option name in the bash completion rule Signed-off-by: Masatake YAMATO --- diff --git a/bash-completion/fadvise b/bash-completion/fadvise index 985c9478d..9d75ded6a 100644 --- a/bash-completion/fadvise +++ b/bash-completion/fadvise @@ -5,7 +5,7 @@ _fadvise_module() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in - '-a'|'--advise') + '-a'|'--advice') ADVS='normal sequential random @@ -25,7 +25,7 @@ _fadvise_module() esac case $cur in -*) - OPTS='--advise + OPTS='--advice --length --offset --help