답변:
생각보다 간단합니다.
$ tar cf small-archive.tar /big/tree --exclude-from <(find /big/tree -size +3M)
3MiB보다 큰 경로에서 파일을 뺀 경로 아래의 모든 파일 (디렉토리 포함) 목록을 가져 오려면 세미 관련 메모 (찾기를 사용할 수없는 설명과 관련)에서 다음을 사용하십시오.
$ find . -size -3M -o -type d
그러면 다음을 수행 할 수 있습니다.
$ tar cf small-archive.tar --no-recursion --files-from <(find /big/tree -size -3M -o -type d)
그러나 나는 더 간단하고 원하는 것을 명확하게 표현하고 덜 놀라게 할 것이므로 첫 번째 것을 선호합니다.
파일 이름에 대괄호가 포함되어 있으면 일부 시스템에서 명시 적으로 제외해야합니다. 예를 들어
$ mkdir test
$ echo "abcde123456" > ./test/a[b].txt
$ echo "1" > ./test/a1.txt
$ ls -la ./test
total 16
drwxrwxr-x 2 user user 4096 Jan 10 16:38 .
drwx------ 4 user user 4096 Jan 10 16:38 ..
-rw-rw-r-- 1 user user 2 Jan 10 16:38 a1.txt
-rw-rw-r-- 1 user user 12 Jan 10 16:38 a[b].txt
$ tar -zcvpf a.tar.gz ./test
./test/
./test/a[b].txt
./test/a1.txt
$ tar -zcvpf a3.tar.gz ./test --exclude-from <(find ./test -type f -size +3c)
./test/
./test/a[b].txt
./test/a1.txt
$ tar -zcvpf ax.tar.gz ./test --exclude-from <(find ./test -type f -size +3c) --exclude '*\[*'
./test/
./test/a1.txt
find
다시 사용할 수 없습니까?