1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 13:33:52 +01:00

new completion function for arp (12165)

This commit is contained in:
Oliver Kiddle 2000-07-04 21:58:09 +00:00
parent e1fe756d14
commit 7f2ee10ba7
2 changed files with 19 additions and 0 deletions

@ -1,3 +1,7 @@
2000-07-04 Oliver Kiddle <opk@zsh.org>
* 12165: Completion/User/_arp: new completion for arp
2000-07-04 Bart Schaefer <schaefer@zsh.org>
* 12160: Completion/Core/compdump: Return failure early if the

15
Completion/User/_arp Executable file

@ -0,0 +1,15 @@
#compdef arp
local state line expl curcontext="$curcontext"
_arguments -C \
'(-d -s -f 1)-a[show entries for all or specified hosts]:host:->hostintable' \
'(-a -s -f 1)-d[delete entry from table]:host:->hostintable' \
'(-a -d -f 1)-s[create an arp entry]:host:_hosts:ethernet address::*:option:(temp trail pub)' \
'(-a -d -s 1)-f[read multiple entries from file]:file:_files' \
'(-a)1:host:->hostintable' && return 0
if [[ "$state" = hostintable ]]; then
_wanted hosts expl 'host' compadd ${${${(f)"$(${words[1]} -a)"}##[ ?(]#}%%[ )]*}
fi