Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^6: changing date format in and out

by AnomalousMonk (Archbishop)
on Feb 14, 2009 at 05:57 UTC ( [id://743775]=note: print w/replies, xml ) Need Help??


in reply to Re^5: changing date format in and out
in thread changing date format in and out

The  $_ in  localtime $_ is not optional: without it, the function returns current local time; likewise gmtime().

The  -l (that's a small ell) command line switch may be useful: it will automatically  chomp the input record separator (IRS) on input and append the ORS on output. (IRS and ORS are both a newline by default.) As mentioned, not so important on input, but on output this gives you your converted time strings each on a separate line rather than as one (very long) line.

>cat utimes 1111111 22222222 333333333 >perl -wMstrict -lne "print scalar localtime $_" < utimes > ltimes >perl -wMstrict -lne "print scalar gmtime $_" < utimes > gmtimes >cat ltimes Tue Jan 13 15:38:31 1970 Mon Sep 14 23:50:22 1970 Thu Jul 24 19:35:33 1980 >cat gmtimes Tue Jan 13 20:38:31 1970 Tue Sep 15 04:50:22 1970 Fri Jul 25 00:35:33 1980
Example without  -l command line switch:
>perl -wMstrict -ne "print scalar localtime $_" < utimes > ltimes >cat ltimes Tue Jan 13 15:38:31 1970Mon Sep 14 23:50:22 1970Thu Jul 24 19:35:33 19 +80

Replies are listed 'Best First'.
Re^7: changing date format in and out
by gio001 (Acolyte) on Mar 23, 2011 at 17:55 UTC
    I replaced gmtime with localtime and it seems to work properly. Thanks Any advice anyway?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://743775]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-20 00:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found