Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Help with problem

by Anonymous Monk
on May 23, 2012 at 05:44 UTC ( [id://971953]=note: print w/replies, xml ) Need Help??


in reply to Help with problem

I cannot understand how this would happen with the above code!

Its probably because you skip the empty lines

Count the empty lines, add the number to the new linecounts, compare to original linecounts

#!/usr/bin/perl -- #~ perltidy -csc -otr -opr -ce -nibc -i=4 use strict; use warnings; use autodie; use IO::Handle; Main( @ARGV ); exit( 0 ); sub Main { local *ARGV; local $^I; my $pre = shift @_; local @ARGV = @_; for (@ARGV) { s/^(\s+)/.\/$1/; # leading whitespace preserved s/^/< /; # force open for input $_ .= qq/\0/; # trailing whitespace preserved & pipes fo +rbidden } my $linenum = 0; my $filenum = 0; my $skipped = 0; open FILEOUT, '>', $pre . "-" . $filenum; while (<ARGV>) { if (/^\s*$/) { $skipped++; next; } elsif ( $linenum <= 300000 ) { print FILEOUT $_; $linenum++; } elsif ( $linenum > 300000 ) { $linenum = 0; # reset line counter every 300,000 lines $filenum++; # increment file counter every 300,000 l +ines # and open new file handle close FILEOUT; open FILEOUT, '>', $pre . "-" . $filenum; print FILEOUT $_; } ## end elsif ( $linenum > 300000) } ## end while (<>) close FILEOUT; my $countedLines = ( ( ( $filenum - 1 ) * 300_000 ) + $linenum ); warn "# TOTAL files $filenum \n", ARGV->input_line_ +number; warn '# ($filenum -1 ) * 300_000 + $linenum = ', "$countedLines\n" +; warn "# TOTAL lines ", ARGV->input_line_number, "\n"; warn "# TOTAL SKIPPED $skipped\n"; warn "# COUNTED + SKIPPED = ", $countedLines + $skipped, "\n"; } ## end sub Main

Log In?
Username:
Password:

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

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

    No recent polls found