in reply to Re: Passing arguments from a Perl script to another
in thread Passing arguments from a Perl script to another

But keep in mind that this way of calling also involves a shell which may interfere with possible shell-special characters in @ARGV.

Probably a safer way would be this:

system($^X, $otherscript, @ARGV, "test");
which bypasses a shell ($^X is the path to the current Perl-interpreter).