in reply to Re: Re: Eval and system()
in thread Eval and system()

It doesn't mean an error in eval when the command in system() fails.

To check for that you can probably use:

eval { system("false") and die "command 'false' went wrong!"}; print $@, "\n"