String inputPath = inputBase + "en." + (i == 10 ? "10" : ("0" + i));
String outputPath = outputBase + DriverUtil.OUTPUT_EXTRACT_LINKS + "/en." +
(i == 10 ? "10" : ("0" + i));
conf.set("Cloud9.InputPath", inputPath);
conf.set("Cloud9.OutputPath", outputPath);
int r = new ClueExtractLinks(conf).run();
if (r != 0) {
return -1;
}
}