in reply to Re^3: Dynamically searching subdirs with titles based on year,month, and date
in thread Dynamically searching subdirs with titles based on year,month, and date
use strict; use warnings; use POSIX qw(strftime); my ($m, $y) = strftime ("%b %Y", localtime) =~ m|(\S+)\s(\S+)|; print "$m $y";
That should get you further...
Update:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Dynamically searching subdirs with titles based on year,month, and date
by lomSpace (Scribe) on Jan 20, 2009 at 16:24 UTC | |
|
Re^5: Dynamically searching subdirs with titles based on year,month, and date
by lomSpace (Scribe) on Jan 20, 2009 at 17:47 UTC |