-
-
Save briandealwis/782862 to your computer and use it in GitHub Desktop.
One-liner to turn jar with Main-Class into executable shell script
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
# turn a jar with a Main-Class into a stand alone executable | |
(echo '#!/usr/bin/env java -jar'; cat blahblah.jar) > blah | |
# turn a jar with a particular main clas into a stand alone executable | |
(echo '#!/usr/bin/env java -jar package.MainClass'; cat blahblah.jar) > blah |
It's working for me too. I really should have included some detail such as the OS and JVM versions that I encountered the problem.
/me blushes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This worked for me, both in mac os and in a linux docker image.