desperado1992 / jcabi-ssh

Java SSH client

Home Page:http://ssh.jcabi.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Made By Teamed.io DevOps By Rultor.com

Build Status PDD status Maven Central Javadoc Dependencies

More details are here: ssh.jcabi.com. Also, read this blog post: Simple Java SSH Client.

It is a convenient SSH client for Java:

import com.jcabi.ssh.Shell;
import com.jcabi.ssh.SSH;
Shell shell = new SSH("example.com", 22, "username", "key...");
String stdout = new Shell.Plain(shell).exec("echo 'Hello, world!'");

There is also a convenient SSHD class, a runner of ssh daemon, for unit testing:

try (SSHD sshd = new SSHD()) {
  String uptime = new Shell.Plain(
    SSH(sshd.host(), sshd.login(), sshd.port(), sshd.key())
 ).exec("uptime");
}

Questions?

If you have any questions about the framework, or something doesn't work as expected, please submit an issue here.

How to contribute?

Fork the repository, make changes, submit a pull request. We promise to review your changes same day and apply to the master branch, if they look correct.

Please run Maven (3.2+) build before submitting a pull request:

$ mvn clean install -Pqulice

Make sure you have Java version 7 or higher.

About

Java SSH client

http://ssh.jcabi.com

License:Other


Languages

Language:Java 100.0%