1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-03 09:21:19 +02:00
zsh/Completion/User/_users_on

12 lines
245 B
Plaintext
Raw Normal View History

2000-04-01 22:43:43 +02:00
#compdef write
1999-09-26 16:26:08 +02:00
local expl
if (( $+commands[users] )); then
_wanted users expl 'users logged on' \
2000-04-01 22:43:43 +02:00
compadd "$@" - $(_call users users) && return 0
1999-09-26 16:26:08 +02:00
else
# Other methods of finding out users logged on should be added here
return 1
fi