File: ccon

package info (click to toggle)
clusterssh 4.18-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 704 kB
  • sloc: perl: 4,309; sh: 178; makefile: 11
file content (25 lines) | stat: -rwxr-xr-x 524 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/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->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;