1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-16 14:41:02 +02:00
zsh/Completion/User/_users_on
1999-12-01 15:29:41 +00:00

13 lines
267 B
Text

#compdef write
local expl
_tags users || return 1
if which users >/dev/null; then
_description users expl 'users logged on'
compadd "$@" "$expl[@]" - $(users) && return 0
else
# Other methods of finding out users logged on should be added here
return 1
fi