4 Einträge, 1 Seite |
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
26
27
28
#! /usr/bin/perl
use strict;
use warnings;
use Getopt::Long;
my @server;
GetOptions('-n=s' => \@server,);
print_usage() unless(@server);
# mache was mit den Servern
###
# Subroutines
###
sub print_usage{
print qq~
Usage: $0 -n <server> [-n <server> ...]
Options:
-n Servername(s)
~;
exit;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use warnings;
use strict;
use diagnostics;
use Getopt::Std;
Kommandozeilenoptionen einsammeln
my %OPTS=();
eval { local $SIG{} = sub {};
getopts("n:", \%OPTS);
} or usage("Bad option");
if ( $OPTS{n} )
{
my @dattest=$OPTS{n};
print @dattest;
}
4 Einträge, 1 Seite |