FTP files from one remote server to another
listed in answer
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/

New Comments