You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2022/12/02 00:19:23 UTC

[accumulo] branch 2.1 updated: Document JShell command in bin/accumulo usage (#3100)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch 2.1
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/2.1 by this push:
     new a320bbe87b Document JShell command in bin/accumulo usage (#3100)
a320bbe87b is described below

commit a320bbe87bf6c01031044c7681c05d89579809e2
Author: AlbertWhitlock <al...@gmail.com>
AuthorDate: Thu Dec 1 19:19:18 2022 -0500

    Document JShell command in bin/accumulo usage (#3100)
    
    Document the existence of the bin/accumulo jshell command in the
    usage for the bin/accumulo command.
---
 start/src/main/java/org/apache/accumulo/start/Main.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/start/src/main/java/org/apache/accumulo/start/Main.java b/start/src/main/java/org/apache/accumulo/start/Main.java
index bfe4ecebcb..e736821e21 100644
--- a/start/src/main/java/org/apache/accumulo/start/Main.java
+++ b/start/src/main/java/org/apache/accumulo/start/Main.java
@@ -213,7 +213,8 @@ public class Main {
     System.out.println("\nCore Commands:");
     printCommands(executables, UsageGroup.CORE);
 
-    System.out.println("  classpath                      Prints Accumulo classpath\n"
+    System.out.println("  jshell                         Runs JShell for Accumulo\n"
+        + "  classpath                      Prints Accumulo classpath\n"
         + "  <main class> args              Runs Java <main class> located on Accumulo classpath");
 
     System.out.println("\nProcess Commands:");