in reply to Re: Eval and system()
in thread Eval and system()
Initially I thoughteval { system "fake command" && print "Blah1\n" };
was correct, but the first example works the way I want it to. Thanks . . . Kevineval {system ("fake command")} or print "Blah1\n";
|
|---|