in reply to redirecting the output of the called script thru calling script

system('script.pl > output.txt'); is a "command in the calling script".

You can also try to do all sorts of magic with filehandles - are you looking for that?

And what are you trying to achieve in the end? This could be an X Y Problem.

  • Comment on Re: redirecting the output of the called script thru calling script
  • Download Code

Replies are listed 'Best First'.
Re^2: redirecting the output of the called script thru calling script
by Kashratul (Acolyte) on Mar 06, 2008 at 11:18 UTC
    thanks