mirror of
https://github.com/ubf/ubf.git
synced 2026-04-16 01:35:14 +00:00
10 lines
133 B
Bash
Executable File
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 "$@"
|
|
|