If you use Windows, you can use a batch (.bat) file to run scripts in groups. Create a testcase.bat file in a text editor and enter the following lines into it:
perl script1.pl
perl script2.pl
perl script3.pl
where script1.pl, script2.pl and script3.pl are your script file names.
Then run the testcase.bat file from the command line.
You will have to print the outputs from each script into a shared file by opening the file descriptor. The "append" "→" mode will be useful here.
source
share