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
#!/usr/bin/env bash | |
###################################################################################################################### | |
# This script is a solution of when you want to pass Java options when they do come to the script as environment | |
# variable, or when you declare them inside a variable, using quotes. When you do so, you may obtain from the Java | |
# process an error that looks like this: | |
# | |
# $ ./java.sh | |
# Error: Could not find or load main class ... | |
# |