sub runReports { print "Generating Reports for $script_to_call\n"; my $exit_val = system($script_to_call); if ( $exit_val ) { print "
System call failed with an exit value $exit_val\n"; print "
Let's see what a backtic exec shows us\n"; print '
', `$script_to_call`, ''; } else { print "
Look for reports in /home/donfox/BioDataProject/kim/Reports"; } }