Change crsh from symlink to real file

This commit is contained in:
Duncan Ferguson 2014-07-05 23:29:13 +01:00
parent d7d9f83b15
commit 70d2cfcb98

View file

@ -1 +0,0 @@
cssh

16
bin_PL/crsh Executable file
View file

@ -0,0 +1,16 @@
#!/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;