Compiling Java code on the command line in Mac OS X - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T23:44:14Z http://stackoverflow.com/feeds/question/1064693 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1064693/compiling-java-code-on-the-command-line-in-mac-os-x 2 Compiling Java code on the command line in Mac OS X Derek Organ 2009-06-30T16:31:01Z 2009-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#1064709 8 Answer by mmyers for Compiling Java code on the command line in Mac OS X mmyers 2009-06-30T16:34:24Z 2009-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>