Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: pls help in perl

by pemungkah (Priest)
on May 11, 2012 at 21:27 UTC ( [id://970105]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
     # "if..."
     if (
    ...
        # 1.2 Record error details in the error log
        print $error_log "$file total count field does not agree ($details
    +_record_count actual, $total_count in file)\n";
    }
    
  2. or download this
    # if the number of actual detail records doesn't match the count in th
    +e file, mark this file as rejected and print a message to the error l
    +og.
     if ( $details_record_count != $total_count) {
        push @rejected_files, @filename;
        print $error_log "$file total count field does not agree ($details
    +_record_count actual, $total_count in file)\n";
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (2)
As of 2024-03-19 05:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found