Compiling Java code on the command line in Mac OS X - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T23:44:14Zhttp://stackoverflow.com/feeds/question/1064693http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1064693/compiling-java-code-on-the-command-line-in-mac-os-x2Compiling Java code on the command line in Mac OS XDerek Organ2009-06-30T16:31:01Z2009-07-07T03:34:14Z
<p>Really basic question I'm sure for some of you Java heads out there. </p>
<p>I have a list of java files and jars that are required.</p>
<p>On windows to build I have this batch file</p>
<pre><code>javac -cp .;opencsv-1.8.jar;mysql-connector.jar -source 1.4 -target 1.4 *.java
jar cvf cup.jar *.class
del *.class
</code></pre>
<p>If I want to do the same thing on mac how would a write a shell script to do the same?</p>
http://stackoverflow.com/questions/1064693/compiling-java-code-on-the-command-line-in-mac-os-x/1064709#10647098Answer by mmyers for Compiling Java code on the command line in Mac OS Xmmyers2009-06-30T16:34:24Z2009-06-30T16:34:24Z<p>Basically the same thing, except</p>
<ol>
<li>The path separator is ':' instead of ';'</li>
<li>I believe the command to delete is called 'rm'</li>
</ol>
<p>Also, I'd put a shabang at the start.</p>
<p>So:</p>
<pre><code>#!/bin/sh
javac -cp .:opencsv-1.8.jar:mysql-connector.jar -source 1.4 -target 1.4 *.java
jar cvf cup.jar *.class
rm *.class
</code></pre>