Thread Systemaufruf inkl. Wertübergabe: Variablenübergabe (4 answers)
Opened by dani at 2005-03-07 14:22

renee
 2005-03-07 14:45
#4534 #4534
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Warum benutzt Du nicht Getopt::Long??
Code: (dl )
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/perl

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

my $param;

GetOptions('-param=s' => \$param);
print $param;


Quote
> perl param.pl -param "dies ist ein test"
dies ist ein test
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 Systemaufruf inkl. Wertübergabe: Variablenübergabe