src/example/multi-project/projects/find/src/find/Main.java [42:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            .build();
        Options options = new Options();

        options.addOption(dir);
        options.addOption(name);

        return options;
    }

    public static void main(String[] args) throws Exception {
        Options options = getOptions();
        try {

            CommandLineParser parser = new DefaultParser();

            CommandLine line = parser.parse(options, args);
            File dir = new File(line.getOptionValue("d", "."));
            String name = line.getOptionValue("n", "jar");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/example/multi-project/projects/sizewhere/src/sizewhere/Main.java [41:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            .build();
        Options options = new Options();

        options.addOption(dir);
        options.addOption(name);

        return options;
    }

    public static void main(String[] args) throws Exception {
      Options options = getOptions();
      try {
        CommandLineParser parser = new DefaultParser();

        CommandLine line = parser.parse(options, args);
        File dir = new File(line.getOptionValue("d", "."));
        String name = line.getOptionValue("n", "jar");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



