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

local expl

_tags any users || return 1

if which users >/dev/null; then
  _description 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