You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
@@ -56,7 +56,9 @@ Note that typically you will want to create an executable JAR for your CLI using
#!/bin/bash
# myapp
java -jar my-app.jar $*
java -jar my-app.jar "$@"
**Note:** You must use `"$@"` here as otherwise Bash may expand/interpret arguments and as a result the JVM may not receive the expected arguments that the user enters.
If this is done you can then invoke your application e.g.