I want to run one perl script like this


Script.pl?one=one&two=two

from the first perl script..

I cant figure out a good way to do this.. I tried

system()
print qx|url|;

and

use URI;
my $url = URI->new('' );


Any ideas?

Thanks!!