in reply to Re^3: Problems with Filehandles and TeeOutput
in thread Problems with Filehandles and TeeOutput

Tested, still not working.
#!/usr/bin/perl -w use Local::TeeOutput; use strict; #No, still not working... open(my $fh, '>>', 'test2.out'); openTee(*STDOUT, *STDOUT, $fh); print "XX\n"; close($fh);
Note it creates a file called GLOB(0x239bcc) which contains the correct data. Note I have been further reading simlar threads on perlmonks and elsewhere for what I am actually trying to do (write STDERR to file and save as variable). The solutions I have found are very complicated and work only on Unix (mine needs to be windows and unix compatible). Coming to the conclusion that the solution, if it exists will be take considerable effort which is likely not worthwile. I was hoping TeeOutput would be a quick solution, but it looks like it won't be suitable.