Reputation: 97
Is there any syntax or function to run a Perl script for infinite time (no time limit)?
PHP has set_time_limit(0)
so what is the equivalent in Perl?
Upvotes: 1
Views: 257
Reputation: 385764
Perl does not impose a time limit on the execution time of scripts. As such, there's no means to disable any such time limit.
Upvotes: 5