Thread zeit als paramenter (12 answers)
Opened by Strazke at 2005-07-29 02:34

renee
 2005-07-29 10:58
#56788 #56788
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Für solche Parameterübergaben gibt es CPAN:Getopt::Std und - was ich lieber benutze - CPAN:Getopt::Long

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

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

my $time;

GetOptions("-t=s" => \$time);

print $time,"\n";


Aufruf:
Code: (dl )
1
2
~/entwicklung 46> perl time.pl -t "12.12.1999 12:12"
12.12.1999 12:12


Das muss in Anführungszeichen gesetzt werden, damit es als *ein* String erkannt wird...
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 zeit als paramenter