Leser: 1
|< 1 2 >| | 19 Einträge, 2 Seiten |
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
29
30
package param;
%options;
@parameter;
$help;
my @zeichen;
foreach(@ARGV)
{
if($_ =~ /^--(.*)(:?=(.*))?/)
{ if($2)
{ $param::options{"$_"} = $2; }
else
{ $param::options{"$_"} = 1; }
}
elsif($_ =~ /^-(.*)/)
{
@zeichen = split ( // , $1);
foreach(@zeichen)
{
$param::options{"$_"} = 1;
}
}
else
{
push(@param::parameter,$_);
}
}
$help = ($param::options{"help"} || $param::options{"h"});
1;
Quotesub new {
my $self = {
EINWERT => 'trallala',
EINANDERERWERT => 'anderewert'
};
bless($self,'CLASS';
return $self;
} #sub
1
2
3
4
5
6
7
8
9
10
sub new {
my $invoc = shift;
my $class = ref $invoc || $invoc;
my $self = {
EINWERT => 'trallala',
EINANDERERWERT => 'anderewert'
};
bless($self, $class);
return $self;
}
|< 1 2 >| | 19 Einträge, 2 Seiten |