How to tar certain file types in all subdirectories?

后端 未结 7 1464
闹比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 23:09

    This will handle paths with spaces:

    find ./ -type f -name "*.php" -o -name "*.html" -exec tar uvf myarchives.tar {} +
    

提交回复
热议问题