in reply to Re: Passing a required script arguments
in thread Passing a required script arguments

here are my two simple test scripts:
#####bar.pl##### #!/perl/bin/perl use warnings; use strict; require "./foo.pl"; &foo('test', 'this'); #####foo.pl###### #!/perl/bin/perl my @args = @_; foreach (@args) { print "ARGS: $_\n"; }