On Fri, 12 Apr 2002, Ruben I Safir wrote:

> Now I have another problem.
> 
> I need to create html files on the fly.  I read in a
> template in the module and print it out through another filehandle to the
> drive.
> 
> It only writes 188 characters.  I tried setting $| = 1 in the module, but it seems
> to have no effect.  Is their a method to write the whole file out?

$| = 1 only applies to the currently selected filehandle.

my $fh = select(OUT); $| = 1; select($fh);

HTH
Ed


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to