Also move indentation settings to end of files and expand *Emacs ones to local variables block to avoid overflowing 80 char lines.
25 lines
507 B
Bash
25 lines
507 B
Bash
# bash completion for nslookup
|
|
|
|
have nslookup &&
|
|
_nslookup()
|
|
{
|
|
local cur
|
|
|
|
COMPREPLY=()
|
|
cur=${COMP_WORDS[COMP_CWORD]#-}
|
|
|
|
COMPREPLY=( $( compgen -P '-' -W 'all class= debug d2 domain= \
|
|
srchlist= defname search port= querytype= \
|
|
type= recurse retry root timeout vc \
|
|
ignoretc' -- "$cur" ) )
|
|
} &&
|
|
complete -F _nslookup nslookup
|
|
|
|
# Local variables:
|
|
# mode: shell-script
|
|
# sh-basic-offset: 8
|
|
# sh-indent-comment: t
|
|
# indent-tabs-mode: t
|
|
# End:
|
|
# ex: ts=8 sw=8 noet filetype=sh
|