public
Description: IRC bot that simplifies posting to IRC from shell scripts
Homepage: http://www.metabrew.com/article/how-we-use-irc-at-lastfm/
Clone URL: git://github.com/RJ/irccat.git
irccat / irccat.sh
100755 13 lines (10 sloc) 0.162 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
#
# Run irccat.
#
 
cp="irccat.jar"
for jar in libs/*.jar
do
cp="$cp:$jar"
done
 
exec java -cp "build/:$cp" fm.last.irccat.IRCCat "${1:-irccat.xml}"