There is an AIX 5.3 Box and there are some Perl scripts that generate web pages. We use them for monitoring of logs. But the perl script, let's name it "displayLogStatus.pl", that extracts some information such as "Failed", or "Completed" from specified log files doesn't refresh the page automatically.
In PHP I know how to refresh / reload a page after a specific time interval. For example this command in a web page:
PHP Code:
header("refresh:60");
would refresh the web page every 1 minute automatically.
How do we do that in Perl?