Answers:
比您想象的简单:
$ tar cf small-archive.tar /big/tree --exclude-from <(find /big/tree -size +3M)
在半相关的注释(与您不能使用find的语句有关)上,获取路径下的所有文件(包括目录)的列表减去大于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
再次使用?