//pass arguments through command line public class eg11_CommandLine { public static void main(String[] args) { for (int index = 0; index < args.length; index++) { System.out.println (args[index]); } } }