in reply to Re^2: Perl Upgrade with Redhat Linux OS Upgrade
in thread Perl Upgrade with Redhat Linux OS Upgrade

You could cat them all together if you think that would help? Or on the target OS, with the target Perl version, run all your test suites, examine the outcome.

  • Comment on Re^3: Perl Upgrade with Redhat Linux OS Upgrade

Replies are listed 'Best First'.
Re^4: Perl Upgrade with Redhat Linux OS Upgrade
by shijith (Novice) on Sep 26, 2019 at 11:57 UTC

    To match all modules install in old and new perl version. can i take module snapshot from perl 5.8 and restore it on 5.20. then do a module update. is this will work ..? does this will work.

      On your 5.8 system use perl -MCPAN -eautobundle to create a bundle for you, which you can then transfer to the new system and install the same way you would any other bundle: perl -MCPAN -e "install Bundle::Snapshot_YYYY_MM_DD_00".

        Thanks you !! </p