in reply to Perl ranges
I'll first note that <pre> is your friend (but yay, view-source).
would be one way to do it. Though I think I might prefer$time_string =~ m/^2013-03-[23][0-9]/
my (undef,undef,undef,$mday,$mon,$year)=gmtime($mtime); if ($year == 2013 && $mon+1 == 3 && 21 <= $mday)
It's a hard call, what with having to deal with zero-based $mon
Original code below:
use strict; use warnings; use Net::FTP; use Time::Local; use File::Listing qw(parse_dir); use POSIX qw(strftime); my ($host, $user, $passwd) = ('xxx.xxx.xxx.xxx', 'abc', 'abc'); my $dir = '/abc/def/ghi'; my $ftp = Net::FTP->new($host) or die qq{Cannot connect to $host: $@}; $ftp->login($user, $passwd) or die qq{Cannot login: }, $ftp->message; $ftp->cwd($dir) or die qq{Cannot cwd to $dir: }, $ftp->message; my $ls = $ftp->dir(); $ftp->binary(); foreach my $entry (parse_dir($ls)) { my ($name, $type, $size, $mtime, $mode) = @$entry; next unless $type eq 'f'; my $time_string = strftime "%Y-%m-%d", gmtime($mtime); if ($time_string eq '2013-03-29') { print "File $name has an mtime of $time_string\n"; $ftp->get($name) or die "get failed ", $ftp->message; } } $ftp->quit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl ranges
by MidLifeXis (Monsignor) on May 06, 2013 at 12:57 UTC | |
by wrog (Friar) on May 06, 2013 at 13:58 UTC |