Thread übergebene Argumente auswerten (9 answers)
Opened by tophoven at 2006-04-08 17:19

renee
 2006-04-08 17:28
#64580 #64580
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Benutze am Besten das Modul CPAN:Getopt::Long:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;
use Getopt::Long;

my ($p,$x,$f);

GetOptions('-p=n' => \$p,
'-x' => \$x,
'-f=s' => \$f);

# ... mehr Code


Aufruf: script.pl -p 3306 -x -f hallo
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread übergebene Argumente auswerten