Thread exec() Dateipfade mit Leerzeichen
(12 answers)
Opened by Kean at 2013-02-27 16:26
Muss es exec() sein? Wenn Du system(1, $cmd, $arg1, ...) verwendest, sollte es mit dem Quoting auch unter Windows klappen. Beachte die 1 als ersten Parameter.
system(1, @args) spawns an external process and immediately returns its process designator, without waiting for it to terminate. (perldoc perlport) Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it? -- Brian Kernighan: "The Elements of Programming Style"
|