Forum Moderators: phranque
In your crontab on server A I think you'd want something like this
*/3 * * * * cd /home/you/yourdir; echo -e "quote USER yourBftpuser\nquote PASS yourBftppass\nput yourfile.txt\nquit" ¦ ftp -n serverB.example.com
(Disclaimer: this would put your ftp password to B in plain text on A which you may not want to do.)
If you don't have crontab access at server A and do have a Linux type system at home you can do A->home, home->B using something similar to the code above in your home crontab.