By testing eof() instead of eof in dave0's one-liner, you can extend its functionality to sum across multiple files. Like this:
# First we make to test files
% perl -le 'print join(",", map int(rand(1000)), 1..10) for 1..50' > i
+n1.csv
% perl -le 'print join(",", map int(rand(1000)), 1..10) for 1..50' > i
+n2.csv
% head -3 in1.csv
94,434,249,267,649,367,572,579,498,369
452,735,420,543,832,198,28,86,67,382
801,339,978,859,85,719,758,89,191,377
# Now we run dave0's original script on them
perl -lanF, -e '$sum += $F[6]; print "Sum is $sum" if eof' in1.csv in2
+.csv
Sum is 23789
Sum is 48874
# Now let's try a small change --------------------------.
# |
# V
perl -lanF, -e '$sum += $F[6]; print "Sum is $sum" if eof()' in1.csv i
+n2.csv
Sum is 48874
What happens is that
eof (no parens!) returns true at the end of each file in @ARGV, while
eof() is true only at the end of the last one (see
eof). In the case of a single input file, the behavior is the same as before.
To get subtotals, you'd do
perl -lanF, -e '$total += $F[6]; $sub += $F[6]; print "Subtotal: $sub"
+ and $sub = 0 if eof; print "Total: $total" if eof()' in1.csv in2.csv
Subtotal: 23789
Subtotal: 25085
Total: 48874
An alternative to testing for eof(), is to put everything in an END. e.g.
perl -lanF, -e '$sum += $F[6]; END{ print "Sum is $sum" }' in1.csv in2
+.csv
Update: Bug in last one-liner corrected.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.