updated cli help to indicate wild cards can be used to limit scan to specific file extensions

Former-commit-id: 1369c129ee4a774ce22fda28a4e74468b578da40
This commit is contained in:
Jeremy Long
2014-03-29 05:26:07 -04:00
parent db0ac70b71
commit 46f36dc7ab

View File

@@ -179,7 +179,8 @@ public final class CliParser {
.create(ArgumentName.APP_NAME_SHORT);
final Option path = OptionBuilder.withArgName("path").hasArg().withLongOpt(ArgumentName.SCAN)
.withDescription("The path to scan - this option can be specified multiple times.")
.withDescription("The path to scan - this option can be specified multiple times. To limit the scan"
+ " to specific file types *.[ext] can be added to the end of the path.")
.create(ArgumentName.SCAN_SHORT);
final Option props = OptionBuilder.withArgName("file").hasArg().withLongOpt(ArgumentName.PROP)