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

for (1 .. 10) { require "./foo.pl"; delete $INC{ './foo.pl' }; }
In this case, you simply shouldn't be using require. Use do instead:
for (1 .. 10) { do "./foo.pl"; die $@ if $@; }

require is the same as do, except it does some things more, things you specifically don't want, except for the error checking.