-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
25 lines (19 loc) · 808 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
A Java framework for local or remote execution of commands.
At the moment the following methods for remote execution are supported:
- rsh
- rexec
- SSH2
The library relies on several 3rd party libraries. For rsh and rexec,
Apache Commons Net is required. It is available at:
http://commons.apache.org/net/
For SSH, either Ganymed SSH2 or JSch is required. They are available at
http://www.cleondris.ch/opensource/ssh2/
and
http://www.jcraft.com/jsch/
respectively.
For a brief introduction of the library, see BasicDemo.java. Additionally,
Javadoc documentation about the API can be generated.
The library is licenced under the Apache 2.0 license. See LICENSE.txt and
http://www.apache.org/licenses/LICENSE-2.0
for more details.
The author of the library is Jernej Kovacic (jkovacic AT gmail DOT com).