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.

In reply to Re: find the number of words that a user has chosen for an input file that a user has also chosen by 1nickt
in thread find the number of words that a user has chosen for an input file that a user has also chosen by distro

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.