blob: 0e0bec2ad62f1e45cd5769db9ad4c02386838a4e (
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 atwall >$NOISE_linefeed
echo /set chat_channel $1 >$NOISE_linefeed
echo "[32mjoined channel $1[m"
echo /part off to go back to espeak ;;
esac
|