1.find查找排除单个目录
查找当前目录或者子目录下所有.txt文件,但是跳过子目录sk
find . -path "./sk" -prune -o -name "*.txt" -print
2.find查找排除多个目录
find / −path/home/−o−path/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