http://www.perlmonks.org?node_id=712580


in reply to Re: cvs wrapper with ssh-agent
in thread cvs wrapper with ssh-agent

Originally I had did not have the open() there and had the last line as:
print `/usr/bin/cvs @ARGV`;
But this failed when there were double quotes in the @ARGV. For example if @ARGV contained: commit -m "message goes here" filename_to_commit

So I used open() instead.