mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 00:59:07 +00:00
Change crsh from symlink to real file
This commit is contained in:
parent
d7d9f83b15
commit
70d2cfcb98
1 changed files with 16 additions and 1 deletions
|
@ -1 +0,0 @@
|
|||
cssh
|
16
bin_PL/crsh
Executable file
16
bin_PL/crsh
Executable 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;
|
Loading…
Add table
Reference in a new issue