If you just need to FTP files in a particular directory to another spot on another system, a simple FTP script would do the job. If you have the FTP package for Tcl, it’s very simple.
ftp::Open – opens the connection
ftp::Cd – change directory if needed
ftp::Put – push the file
ftp::Close – close the connection
I have done quite a bit with the FTP package and find it very easy to use.
Let me know if you need more specifics.
Steve