show/hide this revision's text 3 edited tags
show/hide this revision's text 2 clarified title, so people don't think you're talking about building java itself

Compiling Java code on the command line in Mac OS X

show/hide this revision's text 1

Compiling Java on Mac

Really basic question I'm sure for some of you Java heads out there.

I have a list of java files and jars that are required.

On windows to build I have this batch file

javac -cp .;opencsv-1.8.jar;mysql-connector.jar -source 1.4 -target 1.4 *.java
jar cvf cup.jar *.class
del *.class

If I want to do the same thing on mac how would a write a shell script to do the same?