haim evgi Asked: 2010-01-07 06:29:17 +0800 CST2010-01-07 06:29:17 +0800 CST 2010-01-07 06:29:17 +0800 CST 使用 tar 命令排除目录 772 T 想在 Linux 中使用 tar 命令备份一些文件,但我想从存档中排除特定目录。 我怎样才能做到这一点? linux tar exclude 2 个回答 Voted Best Answer BuildTheRobots 2010-01-07T06:31:54+08:002010-01-07T06:31:54+08:00 因此,让我们备份目录 /directory 及其中的所有内容,但忽略任何名为 IGNORE-ME 的文件。 tar -cf backup.tar /directory --exclude "IGNORE-ME" 如果没有下雪,我可能会指出它man tar与 RTFM 一样好(而且 google 'tar exclude file' 甚至更快)。 Kyle Brandt 2010-01-07T06:33:08+08:002010-01-07T06:33:08+08:00 您还可以将所有模式放在一个文件中并使用: -X, --exclude-from=FILE exclude files matching patterns listed in FILE
因此,让我们备份目录 /directory 及其中的所有内容,但忽略任何名为 IGNORE-ME 的文件。
tar -cf backup.tar /directory --exclude "IGNORE-ME"
如果没有下雪,我可能会指出它
man tar
与 RTFM 一样好(而且 google 'tar exclude file' 甚至更快)。您还可以将所有模式放在一个文件中并使用: