in reply to Self terminating a script after a specified time
Look at the Time::Limit module. It terminates the script after a given time. In your case, the usage would be:
use Time::Limit '86400.0'; # terminate after 86400 seconds (24h)
Could be just the thing you need.
- Luke
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Self terminating a script after a specified time
by shardservant (Initiate) on Jan 08, 2015 at 13:45 UTC | |
by Anonymous Monk on Jan 08, 2015 at 17:52 UTC |