"tar --exclude"

2013-07-08

有时候我们用tar需要排除一些文件

1. find . ! -iname "*.txt" -exec tar cvf a.tar {} \;用find排除

2. tar --exclude "*.txt" -cvf a.tar test打包用--exclude排除

3. tar xvf a.tar --exclude "*.txt"解包用--exclude排除

4. tar xvf b.tar "*.sh"解包是包含某类文件

分类:Linux | 标签: |

相关日志

评论被关闭!