Thread Problem mit system()-Befehl (16 answers)
Opened by daniel at 2010-07-14 09:02

bianca
 2010-07-14 11:25
#139787 #139787
User since
2009-09-13
6977 Artikel
BenutzerIn

user image
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