http://www.perlmonks.org?node_id=125527


in reply to How to dup $FOO to STDIN

Hmmm. It took some time to figure out what you really wanted, until I figured to check 'info dup'. And there it was: You want to simply duplicate the filehandle. You can go several ways here. But first:

You should not use caps for variable names, only for fileglobs. All caps names may cause conflicts with later versions of perl. Moreover, it is confusing, and maybe causing you to do the wrong thing.

Solutions:

  1. Use a GLOB, and glob it to STDIN like:
    open FOO, "<filename" or die ...; *STDIN = *FOO;
    Not really neat, even confusing maybe, but should work.
  2. The open dup as described in perldoc perlopentut
    my $fileno = fileno( $foo ); open STDIN, ">&$fileno" or die "Could not open $fileno: $!";
  3. Just check 'perldoc perlipc' and IPC::Open2 for good measure.

HTH,

Jeroen
"We are not alone"(FZ)