about summary refs log tree commit diff
path: root/Completion/User/_users_on
blob: 0589e705947d4a3f29534cc4f78cbd58581040ce (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[@]" - $(users) && return 0
else
  # Other methods of finding out users logged on should be added here
  return 1
fi