aboutsummaryrefslogtreecommitdiff
path: root/bash-completion
diff options
context:
space:
mode:
authorSebastien Luttringer <seblu@seblu.net>2011-05-05 02:50:11 +0200
committerSebastien Luttringer <seblu@seblu.net>2011-05-22 00:24:45 +0200
commitd4d9f1f97f0fbf798eafbb5c1c1976c342605eb5 (patch)
treec4e581a7cc55d05c3a4512b9f2183398511012af /bash-completion
parent1ba11e7f78af5742dbc211d9202db4549558ca44 (diff)
downloadinitscripts-d4d9f1f97f0fbf798eafbb5c1c1976c342605eb5.tar.xz
Add rc.d bash completion
Signed-off-by: Sebastien Luttringer <seblu@seblu.net>
Diffstat (limited to 'bash-completion')
-rw-r--r--bash-completion18
1 files changed, 18 insertions, 0 deletions
diff --git a/bash-completion b/bash-completion
new file mode 100644
index 0000000..3b0f464
--- /dev/null
+++ b/bash-completion
@@ -0,0 +1,18 @@
+# rc.d bash completion by Seblu <seblu@seblu.net>
+
+_rc.d ()
+{
+ local action="help list start stop reload restart"
+ local cur="${COMP_WORDS[COMP_CWORD]}"
+ local caction="${COMP_WORDS[1]}"
+ if ((${COMP_CWORD} == 1)); then
+ COMPREPLY=($(compgen -W "${action}" -- "$cur"))
+ elif [[ "$caction" == "help" || "$caction" == "list" ]]; then
+ COMPREPLY=()
+ elif ((${COMP_CWORD} > 1)); then
+ COMPREPLY=($( compgen -W "$(find /etc/rc.d -maxdepth 1 -type f -executable -printf '%f\n')" -- "$cur" ))
+ fi
+}
+complete -F _rc.d rc.d
+
+# vim: set ts=2 sw=2 ft=sh noet: