Tagged Questions

6
votes
2answers
617 views

How do I convert epoch time to normal time in Perl?

I am attempting to write a Perl script that parses a log where on each line the second value is the date. The script takes in three arguments: the input log file, the start time, and the end time. ...
2
votes
3answers
60 views

how to extract timezone from localtime()

I'm using the following code to print the current time. use Getopt::Long; use Time::Local; sub gettime { my $t = time(); my ($sec,$mn,$hr,$mday,$mon,$yr,@left, $dstr); ...
2
votes
5answers
2k views

How do I get yesterday's date using localtime?

How do I tweak this to get yesterday's date using localtime? use strict; sub spGetCurrentDateTime; print spGetCurrentDateTime; sub spGetCurrentDateTime { my ($sec, $min, $hour, $mday, $mon, $year) ...
1
vote
4answers
357 views

Perl Localtime Returning 16 Hours When Input is only Seconds

I must be doing something wrong, but I can't figure it out. When I give seconds as an argument to localtime(), I get seconds and 16 hours back. my $startTime = time; (process) my $endTime = time; ...
1
vote
3answers
535 views

Determining Local Time in another Timezone

How can I determine the current date and time of various countries using a PERL script that executes on a server in the US? For example, getDTnow() should determine the current date and time on the ...
1
vote
4answers
430 views

perl- help formatting a timestamp

I am reading in log data with the following time stamp format: Sat Aug 07 04:42:21 2010 I want to convert it to something like this: 20100807044221 What is the best way to do this in perl? ...
0
votes
2answers
278 views

Perl: How to convert a unix timestamp+timezone into local time

the basic question is in the header: I have a unix timestamp and a timezone, e.g. "America/Caracas" and I would like to convert it to the timezone's local time. Searching through stackoverflow, I ...
0
votes
3answers
199 views

How do I preserve localtime() as an int when printing?

I'm trying to append the integral return value of localtime (in Perl) but I can't seem to avoid it converting the return val to something that looks like this: Sun Jul 26 16:34:49 2009 When I say ...