4243444546474849505152
if ("quit".equals(input)) break; Command cmd = client.parseCommand(input); if (cmd == null) { con.printf("Unable to perform the requested action.\n"); } else { cmd.execute(con, input); } } } private Command parseCommand(String input) {