I want to execute a command line command from within perl script.
By that I mean, if I want to execute "perl insideScript.pl" from within"perl outsideScript.pl". How can I do this ?
Do I just add a line of code "perl insideScript.pl" in the "perl outsideScript.pl", wherever I want to run insideScript or do I need to do anything else ?