Hello,
I have a perl script in which i need run some other perl script.
The way I am doing this is through the system command i.e. something like this.
while(<read script names from a file>)
{
system("$script");
}
now, what I want to do is on the screen (STDOUT), I want to display something...