--- Andrew Prueser <[EMAIL PROTECTED]> wrote:
> open(FILEHANDLE, ">filename")
> 
> the '>' indicates open for append, or create if doesn't exist.

Oops -- you just blasted the file! 
use two: 

  open FILEHANDLE, ">>filename" or die $!;

> checkout 'perldoc -f open' for all the fun things you can do with
> open.


=====
print "Just another Perl Hacker\n"; # edited for readability =o)
=============================================================
Real friends are those whom, when you inconvenience them, are bothered less by it than 
you are. -- me. =o) 
=============================================================
"There are trivial truths and there are great Truths.
 The opposite of a trival truth is obviously false.
 The opposite of a great Truth is also true."  -- Neils Bohr

__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

Reply via email to