A script used to backup a site or other FTP contents to a folder and then archive it. Deletes files that are more than 60 days old.
#!/usr/bin/perl
#
# Download all contents via FTP using ncftpget
# Version 0.1 RDG 20080421
my $configdir = "/usr/local/scripts/ftpscript";
my $year = (localtime)[5] + 1900;
my $month = (localtime)[4] + 1;
my $day = (localtime)[3];
if ($month [...]

