Improve command line
[lgpl/argeo-commons.git] / org.argeo.cms.lib.sshd / src / org / argeo / cms / ssh / cli / SshCli.java
index 12b4d5e1d141a9d70cd65b30188f4c43a6482218..287727544cb92d56a97f92194d85ee48b3e28a1a 100644 (file)
@@ -2,6 +2,7 @@ package org.argeo.cms.ssh.cli;
 
 import org.argeo.api.cli.CommandsCli;
 
+/** SSH command line interface. */
 public class SshCli extends CommandsCli {
        public SshCli(String commandName) {
                super(commandName);
@@ -13,5 +14,8 @@ public class SshCli extends CommandsCli {
                return "SSH utilities.";
        }
 
-        
+       public static void main(String[] args) {
+               mainImpl(new SshCli("ssh"), args);
+       }
+
 }