27 lines
462 B
Bash
27 lines
462 B
Bash
# -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
|
|
# ex: ts=8 sw=8 noet filetype=sh
|
|
#
|
|
# bash completion for resolvconf
|
|
|
|
have resolvconf &&
|
|
_resolvconf()
|
|
{
|
|
local cur command
|
|
|
|
COMPREPLY=()
|
|
cur=`_get_cword`
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
|
|
case $prev in
|
|
-@(a|d))
|
|
_available_interfaces
|
|
return 0
|
|
;;
|
|
esac
|
|
|
|
if [[ "$cur" == -* ]]; then
|
|
COMPREPLY=( $( compgen -W '-a -d -u' -- $cur ) )
|
|
fi
|
|
} &&
|
|
complete -F _resolvconf resolvconf
|