(String[] args)
| 1546 | } |
| 1547 | |
| 1548 | public static void main(String[] args) |
| 1549 | { |
| 1550 | if (args.length == 0) |
| 1551 | { |
| 1552 | splash(System.out); |
| 1553 | usage(System.out); |
| 1554 | System.exit(-1); |
| 1555 | return; |
| 1556 | } |
| 1557 | |
| 1558 | try { |
| 1559 | System.exit(call(options(System.out, System.err, System.in, args))); |
| 1560 | } catch (OptionParseException e) { |
| 1561 | System.err.println(e.getMessage()); |
| 1562 | System.exit(-1); |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | /** |
| 1567 | * Prints the splash. |