Is there a CPAN module that can convert a number of seconds to a human-readable English description of the interval?
secToEng( 125 ); # => 2 min 5 sec
secToEng( 129_600 ); # => 1 day 12 h
The format isn’t important as long as it’s human-readable.
I know that it would be trivial to implement.
Since Perl v5.9.5, the modules Time::Seconds and Time::Piece are part of the core Perl distribution. So you can use them without installing additional modules.
You can also use stuff like
$ts->weeks,$ts->minutes, etc.