tar 命令详解

linux下打包文件使用tar命令时,常常会遇到同一目录下选取其中几个文件。

例如要打包 /home/YingMu/ 文件夹且排除 /home/YingMu/03389.com 文件夹

排除多个文件夹则在命令中添加多个目录 --exclude 目录名,例如:

  
  
  
  
  1. tar -czvf YingMu.tar /home/YingMu/ --exclude /home/YingMu/03389.com --exclude /home/YingMu/QQ

因为要排除的文件夹挺多 就写了个文件专门放要排除的文件名

引用:
/home/user/a
/home/user/b
/home/user/c
/home/user/d
/home/user/e
/home/user/f
/home/user/g

没行一个,我用的绝对路径,没测试相对路径行不行,保存为exclude.txt

执行命令
代码:
tar --exclude-from /home/user/exclude.txt -zcvf /home/user/user.tar.gz /home/user/*

搞定


你可能感兴趣的:(tar 命令详解)