blob: 00150f9b748ed0b2751f523dc2b5844e94f0d80e (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#compdef ftp ncftp ping rwho rup xping traceroute host
local expl
: ${(A)hosts:=${(s: :)${(ps:\t:)${${(f)"$(</etc/hosts)"}%%\#*}##[:blank:]#[^[:blank:]]#}}}
_description expl host
compadd -M 'm:{a-zA-Z}={A-Za-z} r:|.=* r:|=*' "$@" "$expl[@]" - "$hosts[@]"
|