从我到目前为止的搜索来看,我只找到了命令推从本地服务器到远程服务器的一天旧数据,但我想要的是拉从远程服务器到本地服务器的一天旧数据。
我尝试find -mtime
与远程服务器文件上的`rsync 结合使用,但没有得到结果。
答案1
在 SuperUser 上,Sehe 发布了一个替代方案:
https://superuser.com/questions/297342/rsync-files-newer-than-1-week
rsync -RDa0P --files-from=<(find sourcedir/./ -mtime -7 -print0) . user@B:targetdir/