blob: a6fe2ed754d76860027ff92c2df9dd3b4c9a1ab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
|