如何在 Linux 中创建 TAR 文件时忽略某些文件夹?

如何在 Linux 中创建 TAR 文件时忽略某些文件夹?

我有一个文件夹,里面有 85 个子文件夹。我想创建一个自定义.tar文件,也就是说我想忽略一些文件夹。

我怎样才能做到这一点?

答案1

有几种方法,请在文档中检查这些选项:

--exclude=PATTERN'
     When performing operations, `tar' will skip files that match
     PATTERN.  *Note exclude::.
`--exclude-from=FILE'
`-X FILE'
     Similar to `--exclude', except `tar' will use the list of patterns
     in the file FILE.  *Note exclude::.

相关内容