in reply to Re: output from cgi
in thread output from cgi

If you need to do this in a module or a larger program, you can localize the filehandle glob, or use the two-argument select. This is handy to avoid spooky action at a distance:
open(OUT, ">firstout.txt") or die "1: $!\n"; print OUT "First\n"; { local *OUT; open(OUT, ">secondout.txt") or die "2: $!\n"; print OUT "Second\n"; } print OUT "Third\n";

Update: If there's an explicit close, it's also worth checking for an error. Someone on p5p had intermittent test failures (creating temporary files) on a nearly full disk. I rarely check, but know I should.

Replies are listed 'Best First'.
Re (3): output from cgi
by talexb (Chancellor) on Jan 08, 2002 at 21:48 UTC
    If I could suggest: an explicit close ( OUT ); statement after the print statement, even if going out of scope does close the local OUT file handle.

    --t. alex

    "Excellent. Release the hounds." -- Monty Burns.