Rsync는 FIND와 mtime을 결합합니다.

Rsync는 FIND와 mtime을 결합합니다.

0~30일 전부터 다양한 파일 형식의 파일을 어떻게 활용하고 복사할지 고민해봤습니다 rsync.findmtime

아래 구문은 find작동하지만 rsync.

rsync \ --files-from=<(find . -type f \( -name "*.X" -or -name "*.x1" \) -mtime -30) [email protected]:/where/to/put/files

답변1

다음을 사용하여 SRC 매개변수를 소스 디렉터리로 추가하면 .작동합니다 .

rsync --files-from=<(find . -type f \( -name "*.X" -o -name "*.x1" \) -mtime -30) . [email protected]:/where/to/put/files

관련 정보