aboutsummaryrefslogtreecommitdiff
path: root/bash-completion
blob: e63e880c427ddec3d8e88d9e985f03c3d85a3ea1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# rc.d bash completion by Seblu <seblu@seblu.net>

_rc.d ()
{
	local action cur prev
	action="help list start stop reload restart"
	_get_comp_words_by_ref cur prev
	if ((COMP_CWORD == 1)); then
		COMPREPLY=($(compgen -W "${action}" -- "$cur"))
	elif [[ "$prev" == help ]]; then
		COMPREPLY=()
	elif [[ "$prev" == list ]]; then
		((COMP_CWORD == 2)) && COMPREPLY=($(compgen -W "started stopped" -- "$cur")) || COMPREPLY=()
	elif [[ "$prev" == start ]]; then
		COMPREPLY=($(comm -23 <(cd /etc/rc.d && compgen -f -X 'functions*' "$cur"|sort) <(cd /run/daemons/ && compgen -f "$cur"|sort)))
	elif [[ "$prev" =~ stop|restart|reload ]]; then
		COMPREPLY=($(cd /run/daemons/ && compgen -f "$cur"|sort))
	elif ((COMP_CWORD > 1)); then
		COMPREPLY=($(cd /etc/rc.d && compgen -f -X 'functions*' "$cur"|sort))
	fi
}
complete -F _rc.d rc.d

# vim: set ts=2 sw=2 ft=sh noet: