| DIR:/proc/self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
| Current File : //proc/self/root/proc/thread-self/root/usr/share/zsh/5.5.1/functions/_net_interfaces |
#compdef ifup ifdown
local expl
local -a net_intf_disp net_intf_list
_find_net_interfaces
_wanted interfaces expl 'network interface' \
compadd "$@" "$net_intf_disp[@]" - "${(@)net_intf_list%%:*}"
|