You don't need a script for that. You can get your count on the command line:
$ cat 1176022.txt
The foo bar
all of the foo's men
Not here
Foo foo foo
Notfoo
What the foo
Expecting five foos
$
$ perl -nE '$l++; $i += () = $_ =~ /\bfoo\b/g; say "After line $l: $i"
+' 1176022.txt
After line 1: 1
After line 2: 2
After line 3: 2
After line 4: 4
After line 5: 4
After line 6: 5
After line 7: 5
$
See perlrun for Perl's command line switches.
The way forward always starts with a minimal test.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.