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

Former-commit-id: 1c034ba00859bc3140ca750c35bd1fc7f7b6d38d
This commit is contained in:
Jeremy Long
2014-03-29 05:26:07 -04:00
parent 4220e58d26
commit f2666d4a30

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)