Line 17 looks like some part of your problem: If -- as appears from your use of qx() -- you're trying to use the system grep,

Use grep to search file

Search /etc/passwd for boo user:
$ grep boo /etc/passwd

You can force grep to ignore word case i.e match boo, Boo, BOO
and all other combination with -i option:
$ grep -i "boo" /etc/passwd

But, as is in your code, methinks the system will eat the $pattern.

once you solve passing the var, this may be helpful: another *nix grep discussion points out that...

-e PATTERN, --regexp=PATTERN    Use PATTERN as the pattern....

OTOH,you may find it useful (and more perl-ish) to user Perl's own grep which uses this syntax (from perldoc -f grep):

@foo = grep(!/^#/, @bar);    # weed out comments

In that case, I think you would do well to use qr at line 5.

Update: nobody home when the now-striken sentence was written. Echhh!


In reply to Re: Passing Regex Pattern in Subroutine by ww
in thread Passing Regex Pattern in Subroutine by Anonymous Monk

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.