43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
# service(8) and /etc/init.d/* completion
|
|
|
|
# This completes on a list of all available service scripts for the
|
|
# 'service' command and/or the SysV init.d directory, followed by
|
|
# that script's available commands
|
|
|
|
[[ -d /etc/init.d || -d /etc/rc.d/init.d ]] || have service || return
|
|
|
|
_service()
|
|
{
|
|
local cur prev words cword
|
|
_init_completion || return
|
|
|
|
# don't complete past 2nd token
|
|
[ $cword -gt 2 ] && return 0
|
|
|
|
if [[ $cword -eq 1 && $prev == service ]]; then
|
|
_services
|
|
else
|
|
local sysvdir
|
|
[ -d /etc/rc.d/init.d ] && \
|
|
sysvdir=/etc/rc.d/init.d || sysvdir=/etc/init.d
|
|
COMPREPLY=( $( compgen -W '`sed -e "y/|/ /" \
|
|
-ne "s/^.*\(U\|msg_u\)sage.*{\(.*\)}.*$/\2/p" \
|
|
$sysvdir/${prev##*/} 2>/dev/null`' -- "$cur" ) )
|
|
fi
|
|
|
|
return 0
|
|
} &&
|
|
complete -F _service service
|
|
for svc in /etc/init.d/!($_backup_glob) /etc/rc.d/init.d/!($_backup_glob); do
|
|
[ -x "$svc" ] && complete -F _service $svc
|
|
done
|
|
unset svc
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# sh-basic-offset: 4
|
|
# sh-indent-comment: t
|
|
# indent-tabs-mode: nil
|
|
# End:
|
|
# ex: ts=4 sw=4 et filetype=sh
|