// note that globalOverrides is true, so that the user will not be
// prompted for the module name if it already there
CommandInfo info = new CommandInfo(DIRECTORY_NAME, "Directory name",
"Please enter directory to use as current working directory.", null, null, false, false, true, false);
CommandDefinition definition = new CommandDefinition("Changes working directory");
definition.add(info);
return definition;
}