Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Parsing Logs

by johngg (Canon)
on Oct 05, 2012 at 18:14 UTC ( [id://997527]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    foreach $line (<MSG>) {
       chomp($line);
       push(@array, $line);
    
  2. or download this
    chomp( @array = <MSG> );
    
  3. or download this
    use strict;
    use warnings;
    
  4. or download this
    open my $msgFH, q{<}, q{/some/file}
       or die qq{open: < /some/file: $!\n};
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://997527]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-03-28 16:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found