# THIS SCRIPT FILE WILL HELP US RUN A JAVA APPLICATION IN STAND-ALONE MODE # (WITHOUT ECLIPSE) ON A MAC COMPUTER. # # Authors: Aaron Stevens (azs@bu.edu), Ping He (hendsun@bu.edu) # # Create a new text file called "connect4". After you create it, you will need # to make it executable using the shell command "chmod +x connect4". # set -x # - Declare a local variable with the location of the JDK # (you will probably need to modify this to refer to the correct # location of the JDK on yourfile system.) # JAVA="/usr/bin/java" # - Declare a local variable with the location of the required .class files # (you will probably need to modify this to refer to the correct # location of the compiled .class files here) CLASSPATH="/Users/YOURUSERNAME/homework/" # - The following line is the one that actually runs the instant messenger client: # (known by it's fully-qualified class-name: edu.bu.cs111.games.connect4.ConnectFour) # $JAVA -classpath $CLASSPATH edu.bu.cs111.games.connect4.ConnectFour