summaryrefslogtreecommitdiffstats
path: root/modules/names
blob: 750917a59cd112fbd463503f109c6bd14d65b31b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /bin/sh

case "$1" in
  (--help) echo send text to everyone with @@ prepended ;;
  (*)
    cd /tmp/noise
    . $NOISE_pid/environment
    nick="${chat_nick-$NOISE_pid}"
    channel="${1-$chat_channel}"
    echo "Users in channel $channel"
    for client in * ; do
      . $client/environment
       chat_nick="${chat_nick-$client}"
       if test "$channel" = "$chat_channel" && test "$default_command" = chat ; then
       	 echo "$chat_nick"
       fi
       unset chat_nick
       unset chat_channel
       unset default_command
    done 
esac