On Fri, 12 Mar 2004, Jeff Westman wrote:
> Is there a way in perl to get the month/day/year using localtime
> WITHOUT using 'use POSIX qw(strftime)' or a system "date" call.
>
> Something using slices, maybe something like:
>
> print scalar ((localtime(time))[4,3,7])
>
> expecting the re
Jeff,
Check out
http://www.users.voicenet.com/~corr/macsupt/macperl/localtime.html
Steve
On Fri, Mar 12, 2004 at 01:38:28PM -0800, Jeff Westman wrote:
> Is there a way in perl to get the month/day/year using localtime
> WITHOUT using 'use POSIX qw(strftime)' or a system "date" call.
>
> Som