bakhari / console
Console
0.0.3
2016-06-04 16:20 UTC
Requires
- illuminate/config: ^5.2
- phanan/remote: ^2.0
This package is auto-updated.
Last update: 2025-01-18 00:09:18 UTC
README
Execute command to remote host using SSH Channel.
Import Classes
require_once __DIR__ . "/vendor/autoload.php"; use Bakhari\Console\Console; use Bakhari\Console\Command; use Bakhari\Console\Streams\FileOutputStream; use PhanAn\Remote\Remote; use Illuminate\Config\Repository as ConsoleConfig;
Set up a new Console
$console = new Console(new ConsoleConfig([ 'host' => '127.0.0.1', 'port' => 22, 'username' => '<username>', 'password' => base64_decode('PHBhc3N3b3JkPg=='), 'auto_login' => false, 'prompt' => '/[\$>]/', 'stdout' => false, ]));
Console's output is sent to stdout by default. Other streams can be added as well. Below we are using FileOutputStream to log the output to /tmp/console
$console->pushOutputStream(new FileOutputStream('/tmp/console'));
Login to Console
If auto_login is disabled, we need to login
$console->login();
To run commands we create a Command Object, and envoke it using run method. Second optional parameter (bool)$dry can be passed for dummy test.
$console->run(new Command([ 'hostname', 'cat /etc/passwd', ]));