24 lines
498 B
Plaintext
Raw Normal View History

2009-05-21 01:26:28 +02:00
# bash completion for nslookup
have nslookup &&
_nslookup()
{
2009-10-04 19:42:50 +02:00
local cur
2009-05-21 01:26:28 +02:00
2009-10-04 19:42:50 +02:00
COMPREPLY=()
_get_comp_words_by_ref cur
2009-05-21 01:26:28 +02:00
2009-10-04 19:42:50 +02:00
COMPREPLY=( $( compgen -P '-' -W 'all class= debug d2 domain= srchlist= \
defname search port= querytype= type= recurse retry root timeout vc \
ignoretc' -- "$cur" ) )
2009-05-21 01:26:28 +02:00
} &&
complete -F _nslookup nslookup
# Local variables:
# mode: shell-script
2009-10-04 19:42:50 +02:00
# sh-basic-offset: 4
# sh-indent-comment: t
2009-10-04 19:42:50 +02:00
# indent-tabs-mode: nil
# End:
2009-10-04 19:42:50 +02:00
# ex: ts=4 sw=4 et filetype=sh