#! /usr/bin/perl #FTP to2600@darkphiber.ca for seCr33n CaPtu7e fetch # #Authored:/home/japh #% whoami #dReKurCe # #Wed Jun 1 17:59:36 EDT 2005 use Net::FTP; $hostname='darkphiber.ca'; $username='to2600@darkphiber.ca'; $hack_the_planet='irc me'; #update by OM Tue May 31 17:15:45 EDT 2005 $home='/home/neutrin0/2600'; #print "Fetch what phile?\n"; $filename="neutrin0.to2600.3105a.jpg"; # open conection to ftp.darkphiber.ca $ftp=Net::FTP->new($hostname); $ftp->login($username,$hack_the_planet); print "Current Listing of $username"; @dirlisting=$ftp->ls(),"\n"; print ">>>>>@dirlisting<<<<<<"; atomize(@dirlisting); $ftp->quit; sub atomize{ @philes=@_; print "++++@philes\n"; for $screencapture(@philes){$ftp->get( $screencapture);} }