Leser: 1
4 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
my @cmd_option; @cmd_option = @ARGV; print "Argument: $cmd_option[0]\n"; #Hier kommt schon nix raus &CmdLineArg (@cmd_option); sub CmdLineArg { my $opt = $_[0]; SWITCH: { if ($opt eq "") { print "No Command Line Argument given!\n"; } if ($opt eq "copy") { print "Command Line Argument $opt given!\n"; } } }
4 Einträge, 1 Seite |