in reply to Protecting Perl Code

There is really no easy way to do it in perl. There are workarounds, but they are probably more trouble than they are worth. I assume these are scripts you are sending to other people? Two points:

Frankly, you are not going to find a lot of support in the Perl community, as perl has a very open (and open-source) philosophy than encourages sharing your source code, learning from others, and a deep dislike for all things secret and propreitary.

As a final note, you could always at least make it *difficult* for people to steal and modify your code by obfuscating it. See the Obfuscated Code section for some bad (or good, depending on how you look at it) examples.