blob: b19cff6e7b62570b90de2339f434cd10760bcc10 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#compdef write
local expl
_wanted users || return 1
if which users >/dev/null; then
_all_labels 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
|