Help for this page

Select Code to Download


  1. or download this
    open(STATS, "/path/to/file") or die "Couldn't open file: $!";
    my $line = scalar <STATS>;
    chomp $line;
    my %file = split /\|/, $line;
    close STATS;