Calocybe: Script in Script ausführen

Beitrag lesen

Hi!

alarm, exec, fork, getpgrp, getppid, getpriority, kill, pipe, qx/STRING/, setpgrp, setpriority, sleep, system, times, wait, waitpid

In Deinem Fall ist wohl system am geeignetsten.

Also Cheatah! Sowas von Dir? Steht doch bei system extra da:
This is NOT what you want to use to capture the output from a command, ...
... sondern man soll doch dafuer die Backticks nehmen (was gleichbedeutend mit qx// ist). Also einfach:
    $ausgabe = script.pl;
Und auf Microsoftsystemen (je nach Dateiendungsverknuepfung usw.) evtl. besser:
    $ausgabe = perl script.pl;

Calocybe