- or download this
open my $fh, '<', $File or die "can not open $File: $!";
while (<$fh>) {
...
}
close $fh;
- or download this
if ( $_ =~ /([0-9]+\:[0-9]+\:[0-9]+) ([0-9]+) (\w+) (\w+) (\w+)/ ){
- or download this
if (/(\d+:\d+:\d+) (\d+) (\w+) (\w+) (\w+)/ ){
- or download this
use strict;
use warnings;
...
print "Transaction with id $id is started but not yet stopped\
+n";
}
}