in reply to How to convert time in perl?

Learn about Perl's time and localtime functions by doing
perldoc -f time perldoc -f localtime
at a comand prompt.

You can even search the perldocs for a keyword by doing something like
perldoc -q time
and you will get a listing displayed of all the matching topics.

HTH.