mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-22 09:22:24 +00:00

Start process to convert to using Dist::Zilla to make life easier for both the author and for users
17 lines
305 B
Perl
Executable file
17 lines
305 B
Perl
Executable file
#!/usr/bin/env perl
|
|
use 5.008.004;
|
|
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;
|