in reply to Chained execution
depending on your system you have to call it like
system('/usr/bin/perl script_name');
be careful because that command will wait for the program to exit. If you want to chain them, best to either wrap them with a shell script or add an '&' to run the next in the background that way the first script can exit