diff options
| author | Masatake YAMATO <yamato@redhat.com> | 2024-07-30 14:05:00 +0900 |
|---|---|---|
| committer | Masatake YAMATO <yamato@redhat.com> | 2024-07-30 14:05:00 +0900 |
| commit | cb8d503a3f9617506af947b2f1f885293daab5fa (patch) | |
| tree | e60e92d1fef29463407e9954074bcbfd21146be9 /bash-completion | |
| parent | 86b6684e7a215a0608bd130371bd7b3faae67aca (diff) | |
| download | util-linux-cb8d503a3f9617506af947b2f1f885293daab5fa.tar.gz | |
fadvise: fix a typo of an option name in the bash completion rule
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Diffstat (limited to 'bash-completion')
| -rw-r--r-- | bash-completion/fadvise | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash-completion/fadvise b/bash-completion/fadvise index 985c9478d8..9d75ded6a3 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 |
