1
0
mirror of https://github.com/ubf/ubf.git synced 2026-04-16 09:45:11 +00:00
Files
ubf/priv/java/irc_client.sh
2009-04-12 01:03:07 +09:00

10 lines
133 B
Bash
Executable File

#!/bin/sh
if [ $# != 3 ]; then
echo "Usage: $0 <nick> <server> <port>"
exit 1
fi
java -cp classes ubf.irc1.IRCClient "$@"