Linux
如何從特定日期開始同步文件/文件夾?
我想從特定日期開始同步文件夾並轉發。例如。我想重新同步 3 天前(當然還有 2 天前、一天前等)創建的文件夾。我知道我需要使用 find 和 rsync 但我不確定如何使用。任何的想法?謝謝!多坦。
rsync --progress --files-from=<(find /src_path -mtime -3 -type f -exec basename {} \;) /src_path/ /dst_path
你會想做一個
find
thensync
find /path -file -mtime +3 -exec rsync {} destination \;