linux
-
특정 파일/폴더 제외하고 복사하기linux 2022. 6. 9. 18:10
방법 방법 1) cp와 ! 문자를 같이 사용하면 된다. cp source/!(file.txt|test.jpg|nodir) destination 만약 파일 구조가 다음과 같다하자. . ├── destination └── source ├── file.rtf ├── file.txt ├── test.jpg ├── yes | └── test.jpg └── nodir └── other.jpg 위 커맨드 수행시 다음과 같이 된다. . └── source (not modified) └── destination ├── file.rtf └── yes └── test.jpg 방법 2) rsync를 사용하면 된다. rsync -av --exclude='path1/to/exclude' --exclude='path2/to/exc..