summaryrefslogtreecommitdiffstats
path: root/shell-completion/whereis
diff options
context:
space:
mode:
authorSami Kerola2013-03-23 18:41:32 +0100
committerSami Kerola2013-04-01 18:41:50 +0200
commit76dceb10a19be9bbfd667cfd02baba59626803d8 (patch)
tree131dceda3aed8ac3015f67b13d529fe6cbfaeb22 /shell-completion/whereis
parentbash-completion: login-utils (diff)
downloadkernel-qcow2-util-linux-76dceb10a19be9bbfd667cfd02baba59626803d8.tar.gz
kernel-qcow2-util-linux-76dceb10a19be9bbfd667cfd02baba59626803d8.tar.xz
kernel-qcow2-util-linux-76dceb10a19be9bbfd667cfd02baba59626803d8.zip
bash-completion: misc-utils
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'shell-completion/whereis')
-rw-r--r--shell-completion/whereis24
1 files changed, 24 insertions, 0 deletions
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