clusterssh/bin_PL/crsh
Duncan Ferguson 6bf4b932ee Do not use system perl
Use whichever perl is configured first on the users PATH, not the system perl.  This fixes problems when building in a perlbrew environment.
2014-11-23 22:01:34 +00:00

16 lines
290 B
Perl
Executable file

#!/usr/bin/env 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;