in reply to the -x command line parameter

I use perl -x to run bits of setup on various test systems on a trusted net:

# telnet <my-development-box> <some-port> | perl -x

On the development box I simply have an inetd server at <some-port>, that cat(1)'s the relevant setup script.

perl -x eats the telnet garbage from the front of the output.

---GreyGlass