不同平台下的tar的exclude参数


文件列表:

a/aa/bb
a/aa/cc
a/bb/aa
a/bb/cc

不要bb目录的方法:

BSD:

  tar -cvf test.tar --exclude a/bb  ./a/*

centos:

   tar -cvf tert.tar  ./a/*  -exclude a/bb
 错误的用法:
   tar -cvf tert.tar  ./a/*  -exclude a/bb/


你可能感兴趣的:(tar)