Help for this page

Select Code to Download


  1. or download this
    {
        local $SIG{__EXEC__} = \&_do_redirect;
        system ...
    }
    
  2. or download this
    {
        use redirect qw( 3>&1 1>&2 2>&3 3>&- );
        open my $fh, ...;
        `another cmd`;
    }