Thread ARGV Userberechtigung
(10 answers)
Opened by bluelight at 2018-10-31 12:20
Zwei Testprogramme für einen User:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 #!perl use strict; use warnings; use 5.010; my $vonNr = shift @ARGV; my $bisNr = shift @ARGV; say "Bin in $0"; say "von: '$vonNr' bis: '$bisNr'"; system('C:\strawberry\perl\bin\perl.exe', 't:\ZETT\b.pl', $vonNr, $bisNr); Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 #!perl use strict; use warnings; use 5.010; say "\n\nBin in $0"; say "\@ARGV: '@ARGV'" ergeben in der Eingabeaufforderung: T:\>perl a.pl "Da ist" "ein test" Bin in a.pl von: 'Da ist' bis: 'ein test' Bin in t:\ZETT\b.pl @ARGV: 'Da ist ein test' |