in reply to Passing arguments from a Perl script to another
system ("$otherScript @ARGV test"); [download]
Probably a safer way would be this:
system($^X, $otherscript, @ARGV, "test"); [download]