JaToo Exec Remote

A free open source Java library created to ease the work with remote processes execution.

Usage

RemoteCommandExecutor executor = new RemoteCommandExecutor();
executor.connect("debian-vm", 22, "cristian.sulea", "password");
executor.exec("mkdir TestFolder");
executor.exec("rmdir TestFolder");

executor.exec("ls", System.out);
executor.exec("ls -l /", System.out);

executor.exec("time", System.out);
executor.exec("host", System.out);

Please check the tutorial for more and detailed examples.

Contact

Licensing

Copyright (C) Cristian Sulea ( http://cristian.sulea.net )

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with this program. If not, see http://www.gnu.org/licenses/.