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

case "$1" in
  (--help) echo send text to everyone with @@ prepended ;;
  (*)
    cd /tmp/noise
    . $NOISE_pid/environment
    if test "$default_command" != chat ; then exit ; fi
    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