in reply to Sytem Call Not Waiting
system PROGRAM LIST Does exactly the same thing as exec LIST , except that a fork is done +first,
This fork is why "the system call never waits for the conversion to happen"
Perldoc also provides a way to wait for return :
system(@args) == 0 or die "system @args failed: $?"
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Sytem Call Not Waiting
by almut (Canon) on Feb 24, 2010 at 08:42 UTC |