public FindCommand() {
super(help_super);
nameArg = new StringArgument("name", Argument.OPTIONAL, help_name);
inameArg = new StringArgument("iname", Argument.OPTIONAL, help_iname);
maxdepthArg = new LongArgument("maxdepth", Argument.OPTIONAL, help_max_depth);
mindepthArg = new LongArgument("mindepth", Argument.OPTIONAL, help_min_depth);
typeArg = new StringArgument("type", Argument.OPTIONAL, help_type);
dirArg = new FileArgument("directory", Argument.OPTIONAL | Argument.MULTIPLE, help_dir);
registerArguments(dirArg, mindepthArg, maxdepthArg, inameArg, nameArg, typeArg);
}