Thread Perlskript mit Übergabe aufrufen!
(14 answers)
Opened by Schlampie at 2004-01-14 13:51
quick & dirty:
script1.pl: my $result = qx(perl script2.pl paramater1 parameter2); script2.pl: my @paramater = @ARGV; ... print <<EOM; Das hier wird an script1.pl zurückgegeben. EOM Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |