in reply to how to execute multiple Perl scripts

You can do it with shell:
#!/bin/sh set -e ./step1.pl ./step2.pl ./step3.pl ./step4.pl
Of course the exit value of the perl scripts must be set correctly.