I have a perl program and in that I am calling another perl program and passing some parameters. How can I do that? ======================= program1.pl #!/usr/bin/perl print "hello"; program2.pl "username" "userid" #How can i call program2.pl using the above parameters? ======================== Thanks