--- Nichole Bialczyk <[EMAIL PROTECTED]> wrote:
> to be more specific, i want to do this: read and delete all of the
> lines  from a log file, except for the first one.

 open IN, $file or die "$file:$!";
 <IN>;        # throw away first line;
 print <IN>;  # print the rest of the file.

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

Reply via email to