// CmdLineArg.java Phill Conrad for UCSB CS5JA, 03/05/2008 // a class to demonstrate command line arguments public class CmdLineArg { // echo information about the command line arguments public static void main (String args[]) { System.out.println("You passed " + args.length + " arguments"); System.exit(0); } }