Linux/os x to convert the jar package into a file that can be executed directly (without Java-jar)

Source: Internet
Author: User
Tags shebang

This script was found on GitHub stub.sh :

#!/bin/shMyself= ' which"$" 2>/dev/null ' [$?-GT 0  -A - F "$"] && myself="./$"Java=javaifTest-n"$JAVA _home"; ThenJava="$JAVA _home/bin/java"fiexec "$java" $java _args-jar$MYSELF "[email protected]"Exit 1

For example, if you have a java -jar jar package that you can execute app.jar , just execute:

cat stub.sh app.jar > app.run && chmod +x app.run

Then you can directly

./app.run

Run your Java program. If you are adding a VM parameter, you can add it to the first line of the script

java_args="-Xmx20m"

Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

Linux/os x to convert the jar package into a file that can be executed directly (without Java-jar)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.