in reply to Re^4: Complete novice in need of guidance
in thread Complete novice in need of guidance

++.

To further that, both perlbrew and berrybrew allow you to make copies of instances, so that you can do this:

berrybrew install 5.24.0_64 berrybrew switch 5.24.0_64

... do a whole bunch of stuff, install all of your favourite modules etc, then:

berrybrew clone 5.24.0_64 configured_perl_template

... do more stuff on the 5.24.0_64 instance, and break it horribly, then:

berrybrew remove 5.24.0_64 berrybrew clone configured_perl_template dev_instance_1 berrybrew switch dev_instance_1

Then break this instance, re-clone the template again, and you start with a 100% configured instance to your liking repeatedly.

That example was berrybrew, but perlbrew has the same functionality. I wrote clone into berrybrew so I could have separate instances, pre-configured, to separate development testing, and for keeping separate projects separate, under custom named instances.

Replies are listed 'Best First'.
Re^6: Complete novice in need of guidance
by Anonymous Monk on Oct 04, 2016 at 04:02 UTC

    :) all so silly