How to tar certain file types in all subdirectories?

后端 未结 7 1476
闹比i
闹比i 2020-12-22 22:30

I want to tar and all .php and .html files in a directory and its subdirectories. If I use

tar -cf my_archive *

it tars all the files, which I

7条回答
  •  余生分开走
    2020-12-22 22:49

    find ./ -type f -name "*.php" -o -name "*.html" -printf '%P\n' |xargs tar -I 'pigz -9' -cf target.tgz

    for multicore or just for one core:

    find ./ -type f -name "*.php" -o -name "*.html" -printf '%P\n' |xargs tar -czf target.tgz

提交回复
热议问题