user2563207
user2563207

Reputation: 97

Does Perl have a timeout, if so, how to disable it?

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

Answers (1)

ikegami
ikegami

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

Related Questions