rsync를 사용하여 디렉터리 병합(결합)

rsync를 사용하여 디렉터리 병합(결합)

다음 디렉터리 구조를 결합하는 배포 스크립트를 생성해야 합니다.

├── LIB_COMMON
│   ├── file1.php 
│   ├── file2.php
│   ├── file3.php
│   └── file4.php
├── LIB_CZ
│   ├── file2.php
│   ├── file3.php
│   ├── file5.php
│   └── file6.php

...결과는 다음과 같아야 합니다.

├── LIB_RESULT
│   ├── file1.php ...with content from LIB_COMMON
│   ├── file2.php ...from LIB_CZ
│   ├── file3.php ...from LIB_CZ
│   ├── file4.php ...from LIB_COMMON
│   ├── file5.php ...from LIB_CZ
│   └── file6.php ...from LIB_CZ

한 가지 방법은 다음과 같습니다.

rsync LIB_COMMON/ LIB_RESULT/ --delete-after
rsync LIB_CZ/ LIB_RESULT/

...하지만 항상 많은 파일을 전송합니다.

다른 방법은 다음과 같습니다.

cp LIB_COMMON/ TMP/ 
cp LIB_CZ/ TMP/
rsync TMP/ LIB_RESULT/ --delete-after

그렇다면 이것을 달성하는 우아한 방법을 아는 사람이 있습니까?

답변1

rsync -avz LIB_COMMON/ LIB_CZ/ LIB_RESULT/ --delete-after

lib_common/그러면 &의 내용이 폴더 lib_cz/에 동기화됩니다.lib_result/

답변2

다른 순서로 나를 위해 일합니다

~/test$ ll a/
-rw-r--r-- 1 jakub jakub   18 Jun  8 10:19 file1
-rw-r--r-- 1 jakub jakub    0 Jun  8 10:18 file2
-rw-r--r-- 1 jakub jakub    0 Jun  8 10:18 file3

~/test$ ll b/
-rw-r--r-- 1 jakub jakub    0 Jun  8 10:18 file2
-rw-r--r-- 1 jakub jakub   13 Jun  8 10:19 file3
-rw-r--r-- 1 jakub jakub    0 Jun  8 10:18 file4

~/test$ ll c/
-rw-r--r-- 1 jakub jakub    0 Jun  8 10:22 file5

~/test$ rsync -avz b/ a/ c/ --delete-after
building file list ... done
./
file1
file2
file3
file4
deleting file5

sent 345 bytes  received 94 bytes  878.00 bytes/sec
total size is 31  speedup is 0.07

~/test$ ll c/
-rw-r--r-- 1 jakub jakub   18 Jun  8 10:19 file1
-rw-r--r-- 1 jakub jakub    0 Jun  8 10:18 file2
-rw-r--r-- 1 jakub jakub   13 Jun  8 10:19 file3
-rw-r--r-- 1 jakub jakub    0 Jun  8 10:18 file4

답변3

다른 질문에 대한 유용한 답변:https://stackoverflow.com/a/22558474/652971

난 이걸 할거야:

rsync $(
 find ./one/ -type f $(printf "! -name %s " `ls ./two/`)
 find ./two/ -type f 
) user@remote:/path/

관련 정보