mirror of
https://github.com/duncs/clusterssh.git
synced 2025-06-30 08:44:17 +00:00
16 lines
286 B
Perl
Executable file
16 lines
286 B
Perl
Executable file
#!/usr/bin/perl
|
|
use strict;
|
|
use warnings;
|
|
|
|
use FindBin;
|
|
use lib $FindBin::Bin. '/../lib';
|
|
use lib $FindBin::Bin. '/../lib/perl5';
|
|
use App::ClusterSSH;
|
|
|
|
my $app = App::ClusterSSH->new();
|
|
|
|
$app->options->add_common_ssh_options;
|
|
$app->options->add_common_session_options;
|
|
$app->run();
|
|
|
|
1;
|