Thread Getopt::Std - Fragezeichen als Option ermöglichen (3 answers)
Opened by Astralkeks at 2012-09-18 15:59

Linuxer
 2012-09-18 16:09
#161904 #161904
User since
2006-01-27
3891 Artikel
HausmeisterIn

user image
Was heisst "funzt nicht"?


Edit:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/perl
use strict;
use warnings;

use Getopt::Std;
use Data::Dumper;

getopts('fb?', \my %opts );

print Data::Dumper->new( [ \%opts ], [ 'opts' ])->Sortkeys(1)->Dump();


Ausprobiert:
Code: (dl )
1
2
3
4
5
PROMPT$ perl x.pl -?
$opts = {
'?' => 1
};
PROMPT$


Schaut doch gut aus...
Last edited: 2012-09-18 16:18:27 +0200 (CEST)
meine Beiträge: I.d.R. alle Angaben ohne Gewähr und auf Linux abgestimmt!
Die Sprache heisst Perl, nicht PERL. - Bitte Crossposts als solche kenntlich machen!

View full thread Getopt::Std - Fragezeichen als Option ermöglichen