01: /*
02: * ExecErr.java --
03: *
04: * jacl/tests/exec/ExecErr.java
05: *
06: * Copyright (c) 1998 by Moses DeJong
07: *
08: * See the file "license.terms" for information on usage and redistribution
09: * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
10: *
11: * RCS: @(#) $Id: ExecErr.java,v 1.1 1999/05/10 04:09:04 dejong Exp $
12: *
13: */
14:
15: package tests.exec;
16:
17: public class ExecErr {
18: public static void main(String[] argv) {
19: System.out.println("!stdout!");
20: System.err.println("!stderr!");
21: System.exit(-1);
22: }
23: }
|