Repository: accumulo Updated Branches: refs/heads/1.5.2-SNAPSHOT 3d469eb85 -> b664f51d8 refs/heads/1.6.1-SNAPSHOT ab4ecfc25 -> 871775028 refs/heads/master 5e4478057 -> 16d1f3b56
ACCUMULO-2747 Added dash to 'show few' option Signed-off-by: Josh Elser <els...@apache.org> Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/b664f51d Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/b664f51d Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/b664f51d Branch: refs/heads/1.5.2-SNAPSHOT Commit: b664f51d863fc4a90bff6b02519f96ccbe19d90e Parents: 3d469eb Author: Jeffrey S. Schwartz <j...@schwartech.com> Authored: Thu Jun 12 20:45:51 2014 -0400 Committer: Josh Elser <els...@apache.org> Committed: Thu Jun 12 22:38:47 2014 -0400 ---------------------------------------------------------------------- .../org/apache/accumulo/core/util/shell/commands/ScanCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/b664f51d/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java b/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java index 74aa699..73b5c3a 100644 --- a/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java +++ b/core/src/main/java/org/apache/accumulo/core/util/shell/commands/ScanCommand.java @@ -282,7 +282,7 @@ public class ScanCommand extends Command { scanOptColumns = new Option("c", "columns", true, "comma-separated columns"); timestampOpt = new Option("st", "show-timestamps", false, "display timestamps"); disablePaginationOpt = new Option("np", "no-pagination", false, "disable pagination of output"); - showFewOpt = new Option("f", "show few", true, "show only a specified number of characters"); + showFewOpt = new Option("f", "show-few", true, "show only a specified number of characters"); formatterOpt = new Option("fm", "formatter", true, "fully qualified name of the formatter class to use"); interpreterOpt = new Option("i", "interpreter", true, "fully qualified name of the interpreter class to use"); formatterInterpeterOpt = new Option("fi", "fmt-interpreter", true, "fully qualified name of a class that is a formatter and interpreter");