- or download this
for (...) {
push @a, $_;
}
- or download this
push @a, ...;
- or download this
my @a = ...;
- or download this
unless ( ($localtimenoformat - $mdtmnoformat) > 3600 ) {
- or download this
if ( ($localtimenoformat - $mdtmnoformat) <= 3600 ) {
- or download this
push @files, $ftp->ls;
...
envia_mail() if !$new_file;
$ftp->quit or die $ftp->message;
- or download this
push @files, $ftp->ls;
...
envia_mail() if !$new_file;
$ftp->quit or die $ftp->message;