Created
September 24, 2010 09:49
-
-
Save goshki/595139 to your computer and use it in GitHub Desktop.
Bash command to run a Java app with automatically generated classpath based on jars in 'lib' folder.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Automatically generate Java app classpath based on jars in 'lib' folder | |
javac -cp `echo lib/*jar | tr ' ' :` App.java |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment