You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2014/06/13 04:58:49 UTC

[3/6] git commit: ACCUMULO-2747 Added dash to 'show few' option

ACCUMULO-2747 Added dash to 'show few' option

Signed-off-by: Josh Elser <el...@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/master
Commit: b664f51d863fc4a90bff6b02519f96ccbe19d90e
Parents: 3d469eb
Author: Jeffrey S. Schwartz <je...@schwartech.com>
Authored: Thu Jun 12 20:45:51 2014 -0400
Committer: Josh Elser <el...@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");