in reply to Re: What are all the possible ways to deploy Perl code on multiple servers?
in thread What are all the possible ways to deploy Perl code on multiple servers?

ssh (or at least openssh) lets you redirect stdin over the network. So you could skip the rm here, e.g...
ssh -t user@server perl < yourscript.pl
  • Comment on Re^2: What are all the possible ways to deploy Perl code on multiple servers?
  • Download Code