Jim Nathan wrote:
"$| = 1;". Is there any special meaning of the $| (dollar-pipe) variable?
Yes. http://perldoc.perl.org/perlvar.html#%24%7c
"open(LFD, ">abc.log");". My question here is that I can't find an example of open being used in this syntax
Odd. http://perldoc.perl.org/functions/open.html
and was also wondering whether LFD had any special meaning.
No. It's just the name of the filehandle. -- Gunnar Hjalmarsson Email: http://www.gunnar.cc/cgi-bin/contact.pl -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/
