#!/bin/bash # This is a Linux executable bash script. # Delete .class files rm *.class # Compile # Note that the classpath specified includes a jar file and the current working # direcoty identified by '.'. javac -cp ../myaccountslib/dist/myaccountslib.jar:. AccountApp.java # Run java -cp ../myaccountslib/dist/myaccountslib.jar:. AccountApp