in reply to Bad file descriptor after vmran command using system()
Instead use autodie for proper error handling, it's tested and you get nice default error messages:
use autodie qw(:all); # replaces system() system $command; # implicit error handler
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Bad file descriptor after vmran command using system()
by Anonymous Monk on Apr 08, 2013 at 20:46 UTC |