blob: 2705abac115d844191d5006233ed998b00471abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/sh
case "$1" in
(--help) echo set default_command to chat and join channel ;;
(*)
echo /set default_command chat >$NOISE_linefeed
echo /set chat_channel $1 >$NOISE_linefeed
echo "[32mjoined channel $1[m"
echo /part off to go back to espeak ;;
esac
|