in reply to Re: how to invoke unix commands in perl
in thread how to invoke unix commands in perl

But how to invoke setenv or source commands in perl These are built-in shell commands. -Bhanu
  • Comment on Re^2: how to invoke unix commands in perl

Replies are listed 'Best First'.
Re^3: how to invoke unix commands in perl
by Anonymous Monk on Jan 12, 2009 at 16:24 UTC
    Those particular commands would be useless anyway because they only take effect for the current shell which would be exited anyway once the OS call is done.
Re^3: how to invoke unix commands in perl
by parkprimus (Sexton) on Oct 08, 2016 at 04:22 UTC
    how about with system("what ever you want to do in unix"); ?