Turn into its own script rather than a symlink

This commit is contained in:
Duncan Ferguson 2014-06-07 16:47:18 +01:00
parent bdfd32c12d
commit 31d831bb0c

View file

@ -1 +0,0 @@
cssh

22
bin_PL/ccon Executable file
View file

@ -0,0 +1,22 @@
#!/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->add_option(
spec => 'master|M=s',
help => $app->loc("The console client program polls master as the primary server, rather than the default set at compile time (typically ``console'')."),
);
$app->run();
1;