FTP files from one remote server to another

listed in answer

FTP files from one remote server to another
0 votes, 0.00 avg. rating (0% score)

ANSWER:

I am not sure how strict is the requirement “only the files that were created today”. If you’re ok with “only the files that have changed (or new)” then a possible solution is:

ssh user1@server1 rsync -urv path/to/dir/ user2@server2:/path/to/dir/

by janos from http://unix.stackexchange.com/questions/37035