Groovy exit - System.exit - early exit from Groovy script
examples/groovy/early_exit.groovy
if (args.size() < 1) { System.exit(42) } System.exit(0)
groovy early_exit.groovy echo $? 42
groovy early_exit.groovy param echo $? 0
See also System
Published on 2019-04-16
If you have any comments or questions, feel free to post them on the source of this page in GitHub. Source on GitHub.
Comment on this post