http://qs321.pair.com?node_id=110329


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

Thanks, monks. As always I learned quite a bit by asking a question here. I think I'll be going with:
eval { system "fake command" && print "Blah1\n" };
Initially I thought
eval {system ("fake command")} or print "Blah1\n";
was correct, but the first example works the way I want it to. Thanks . . . Kevin