http://qs321.pair.com?node_id=1078172


in reply to convert iso8601 to epoch time without using additional module

You could parse iso8601 and use Time::Local to convert to epoch. This module is part of core AFAIK so you should have it installed already.

If this is too complicated there is always the ninja method of copying a module source like Date::ISO8601 and put it beside your script or insert the needed parts into your script.

  • Comment on Re: convert iso8601 to epoch time without using additional module