If print/say is the only issue, changing -E to -le will make print work the same as say. Furthermore, that will work in very old Perls (at least 5.6, but I expect much earlier).

I often find I need to check the versions of multiple modules so I wrote this function for that:

perlmodver () { for i in "$@"; do eval "echo \`perl -E 'no warnings q{deprecated}; use $i; say q +q{$i }, \$$i::VERSION'\`" done }

Example usage:

$ perlmodver DBD::ODBC DBD::SQLite DBI Can't locate DBD/ODBC.pm in @INC (you may need to install the DBD::ODB +C module) (@INC contains: /Users/ken/local/lib/perl /Users/ken/perl5/ +perlbrew/perls/perl-5.22.0t/lib/site_perl/5.22.0/darwin-thread-multi- +2level /Users/ken/perl5/perlbrew/perls/perl-5.22.0t/lib/site_perl/5.2 +2.0 /Users/ken/perl5/perlbrew/perls/perl-5.22.0t/lib/5.22.0/darwin-th +read-multi-2level /Users/ken/perl5/perlbrew/perls/perl-5.22.0t/lib/5. +22.0 .) at -e line 1. BEGIN failed--compilation aborted at -e line 1. DBD::SQLite 1.46 DBI 1.633

— Ken


In reply to Re^4: Perl ODBC Drivers by kcott
in thread Perl ODBC Drivers by deelinux

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.