about summary refs log tree commit diff
path: root/Completion/User/_users_on
blob: f620f83c72b919d60930d3d1f61e2bf89bc5b57e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#compdef write

local expl

_tags users || return 1

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