in reply to running a Perl script from a Perl script
#!/usr/bin/perl -w .... { local @ARGV = qw( one two three ); require "second_script.pl"; exit(); } [download]