blob: b5c05e12b240c2ae38d2f9dad67f441c4df4972d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#compdef write
local expl
if (( $+commands[users] )); then
_wanted users expl 'users logged on' \
compadd "$@" - $(_call users users) && return 0
else
# Other methods of finding out users logged on should be added here
return 1
fi
|