in reply to Re^2: Getting a date/time in a certain format in a Windows and Linux environment
in thread Getting a date/time in a certain format in a Windows and Linux environment

Well, it could be unimplemented on win32, but just to make sure, here is some code that works on linux:
#!/usr/bin/perl -w use strict; use POSIX qw(strftime); print strftime("%m/%d/%y %H:%M:%S",localtime); __END__ 08/17/04 00:40:03
  • Comment on Re^3: Getting a date/time in a certain format in a Windows and Linux environment
  • Download Code