in reply to running programs
to take advantage of whatever error codes/messages that may be returned.my $rc = system "some command"; if ($rc != $whatever_return_code_you_expect) { # do some debugging stuff }
If the code and the comments disagree, then both are probably wrong. -- Norm Schryer
|
|---|