No, I meant to have everything in one line. That way, setting of PERL5LIB is valid for this particular invocation of perl only and does not clobber the current value of PERL5LIB (if any) for the rest of your shell session (if exported).

$: TEST=this #-- your shell might need to 'export' explicitly $: echo $TEST this $: TEST=that eval 'echo $TEST' that $: echo $TEST this

Setting PERL5LIB the way you did, would keep the setting for the rest of your shell session. You might consider to set it in your shells configuration (.bashrc, .profile, etc.) if required.

I am not sure, if I understood your last question.

I think it will still take the one already installed and not the one I cloned.
No, with path-to-your-local-directory, I meant the .../lib directory of your cloned installation. When in doubt try
PERL5LIB=<as-needed> perl -MDevel::Cover=-coverage,none -e 'print "$D +evel::Cover::VERSION <--- HERE!\n"'
and see if the VERSION is as expected (Devel::Cover might print that anyways in its header message).


In reply to Re^3: How to use the local Devel::Cover module? by Perlbotics
in thread How to use the local Devel::Cover module? by ovedpo15

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.