in reply to "Exception" handling and more...
that will give you the error code of the syscommand/script.my $errorCode = system(SYSCOMMAND/SCRIPT);
will give you the error message maybe checking $! will help you toomy $errorMessage = `SYSCOMMAND/SCRIPT`; # back ticks
|
---|