in reply to File::Find managing the %options versus \&wanted dichotomy
what would you recommend?
use strict; use warnings; use File::Find::Rule; use Time::Local; my ($min_time, $max_time) = ( timelocal(0,0,15,15,7,105), timelocal(0,0,18,16,7,105) ); my @directories = ( '/home/ftp/pub/', $ENV{ AC_SYSTEM }, $ENV{ AC_WORK +DIR } ); print File::Find::Rule->file->mtime(">$min_time")->mtime("<$max_time") ->in( @directories );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: File::Find managing the %options versus \&wanted dichotomy
by anonymized user 468275 (Curate) on Aug 17, 2005 at 12:03 UTC | |
by adrianh (Chancellor) on Aug 17, 2005 at 13:31 UTC | |
by anonymized user 468275 (Curate) on Aug 17, 2005 at 13:53 UTC |