in reply to Passing arguments from a Perl script to another

To pass all args to your called script, try this:
system ("$otherScript @ARGV test");

Replies are listed 'Best First'.
Re^2: Passing arguments from a Perl script to another
by morgon (Priest) on Oct 04, 2010 at 22:12 UTC
    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).