diff options
author | Masatake YAMATO | 2017-03-07 03:33:52 +0100 |
---|---|---|
committer | Karel Zak | 2017-03-23 12:46:41 +0100 |
commit | 483baa35abdcfb35bfcefde8988ed4483640e2f9 (patch) | |
tree | 4da69242683ce5d5a855f9feab63e78a93a15f27 /bash-completion | |
parent | tests: add cases for testing fincore command (diff) | |
download | kernel-qcow2-util-linux-483baa35abdcfb35bfcefde8988ed4483640e2f9.tar.gz kernel-qcow2-util-linux-483baa35abdcfb35bfcefde8988ed4483640e2f9.tar.xz kernel-qcow2-util-linux-483baa35abdcfb35bfcefde8988ed4483640e2f9.zip |
bash-completion: add a function for fincore command
Signed-off-by: Masatake YAMATO <yamato@redhat.com>
Diffstat (limited to 'bash-completion')
-rw-r--r-- | bash-completion/Makemodule.am | 3 | ||||
-rw-r--r-- | bash-completion/fincore | 25 |
2 files changed, 28 insertions, 0 deletions
diff --git a/bash-completion/Makemodule.am b/bash-completion/Makemodule.am index 3ffd124dc..ff7b052b5 100644 --- a/bash-completion/Makemodule.am +++ b/bash-completion/Makemodule.am @@ -18,6 +18,9 @@ endif if BUILD_COLUMN dist_bashcompletion_DATA += bash-completion/column endif +if BUILD_FINCORE +dist_bashcompletion_DATA += bash-completion/fincore +endif if BUILD_FINDMNT dist_bashcompletion_DATA += bash-completion/findmnt endif diff --git a/bash-completion/fincore b/bash-completion/fincore new file mode 100644 index 000000000..d213586ca --- /dev/null +++ b/bash-completion/fincore @@ -0,0 +1,25 @@ +_fincore_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-h'|'--help'|'-V'|'--version') + return 0 + ;; + esac + case $cur in + -*) + OPTS="--help + --version" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + esac + local IFS=$'\n' + compopt -o filenames + COMPREPLY=( $(compgen -f -- ${cur:-"/"}) ) + return 0 +} +complete -F _fincore_module fincore |