From 76dceb10a19be9bbfd667cfd02baba59626803d8 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sat, 23 Mar 2013 17:41:32 +0000 Subject: bash-completion: misc-utils Signed-off-by: Sami Kerola --- shell-completion/whereis | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 shell-completion/whereis (limited to 'shell-completion/whereis') diff --git a/shell-completion/whereis b/shell-completion/whereis new file mode 100644 index 000000000..96e4117a9 --- /dev/null +++ b/shell-completion/whereis @@ -0,0 +1,24 @@ +_whereis_module() +{ + local cur prev OPTS + COMPREPLY=() + cur="${COMP_WORDS[COMP_CWORD]}" + prev="${COMP_WORDS[COMP_CWORD-1]}" + case $prev in + '-B'|'-M'|'-S') + compopt -o filenames + COMPREPLY=( $(compgen -o dirnames -- ${cur:-"/"}) ) + return 0 + ;; + esac + case $cur in + -*) + OPTS="-b -B -m -M -s -S -f -u -l" + COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) + return 0 + ;; + esac + COMPREPLY=( $(compgen -W "file" -- $cur) ) + return 0 +} +complete -F _whereis_module whereis -- cgit v1.2.3-55-g7522