The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 05-13-2008
Smiling Dragon's Avatar
Smiling Dragon Smiling Dragon is offline Forum Advisor  
Disorganised User
  
 

Join Date: Nov 2007
Location: New Zealand
Posts: 922
You can use expect and send commands to script an interaction with your ftp client (assuming it's commandline).
Using these commands, open your ftp session, find the correct directory, then run a listing sorted by date.
Use your script to get the last (or first) line of this output and then use it to issue an ftp get for that file.

Alternativly, perl's ftp module is pretty good, you can use that to obtain an array sorted by date of the files in a given directory, then grab the appropriate entry and send the get requiest via perl too.