首页 > 其他 > 详细

find tar排除指定文件或目录操作

时间:2017-02-13 16:32:00      阅读:420      评论:0      收藏:0      [点我收藏+]

 

1.find查找排除单个目录

查找当前目录或者子目录下所有.txt文件,但是跳过子目录sk

find . -path "./sk" -prune -o -name "*.txt" -print

2.find查找排除多个目录

find / path/home/opath/root -prune -nouser -type f -exec ls -l {} \;

find /usr/sam \( -path /usr/sam/dir1 -o -path /usr/sam/file1 \) -prune -o -print

3.tar根据文件列表压缩指定文件

tar -czv -T /opt/src/downLoad_list.txt -f downLoad_list.txt.tar.gz
 
  -T, --files-from=FILE      get names to extract or create from FILE
      --unquote              unquote filenames read with -T (default)
  -X, --exclude-from=FILE    exclude patterns listed in FILE
 
-T 指定需要压缩的文件列表,只压缩文件列表里的文件
-f 指定压缩文件名及路径
-X 排除指定文件,不进行压缩
 

find tar排除指定文件或目录操作

原文:http://www.cnblogs.com/zhanmeiliang/p/6394300.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!