Hi all. I have a process that checks the last time a file was updated. If the data is over 3 minutes a separate perl script is started. The problem is that second script takes 5-10 seconds to run. Is there a way to start the second script, but continue and finish the current script?
..... CODE .............
if ($time_difference > 180) {
system("perl create_cache.pl");
}
...... MORE CODE .......
Thanks,