Groovy exit - System.exit - early exit from Groovy script


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

timestamp: 2019-04-16T15:30:01 tags:

  • exit
  • System.exit