Thread Problem mit system()-Befehl
(16 answers)
Opened by daniel at 2010-07-14 09:02
Du brauchst nur den Code auf Deinen Fall anwenden:
Code (perl): (dl
)
1 2 3 @args = ("mentat","-path C:\\evo_crash","-pr cbody_glue.proc"); system(@args) == 0 or die "system @args failed: $?" Und damit mal ein bisschen spielen. Frage: Wenn Du Dein Programm aufrufst und Dich NICHT in seinem Pfad befindest, funktioniert es dann? 10 print "Hallo"
20 goto 10 View full thread Problem mit system()-Befehl |