From 483baa35abdcfb35bfcefde8988ed4483640e2f9 Mon Sep 17 00:00:00 2001 From: Masatake YAMATO Date: Tue, 7 Mar 2017 11:33:52 +0900 Subject: bash-completion: add a function for fincore command Signed-off-by: Masatake YAMATO --- bash-completion/fincore | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 bash-completion/fincore (limited to 'bash-completion/fincore') 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 -- cgit v1.2.3-55-g7522