Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: hash array

by liverpole (Monsignor)
on Nov 03, 2010 at 18:01 UTC ( [id://869285]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my %owner = ( );
    
  2. or download this
        open (FILE,"cron.log") or die "Can't open 'cron.log -- here's why:
    +  $!\n";
    
  3. or download this
    use IO::File;
    my $fh = new IO::File("cron.log", "r") or die "Can't open 'cron.log' (
    +$!)\n";
    # Now use $fh in place of FILE ...
    
  4. or download this
        my @split  = split /[ ]+/;
        my $split1 = $split[1] || "";
        next if ($split1 !~ /oracle|sybase/)
    
  5. or download this
    #!/usr/bin/perl
    use strict;
    ...
            print "$owner - JobID:$_ - RunTime:${$owner}{$_}\n";
        };
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (8)
As of 2024-04-23 10:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found