16 2014年09月

tar压缩时排除某些目录或文件

发布于:17时27分 | 来源:湛蓝天空  |   编辑:湛蓝  |   日志分类:服务器  |   已聚集:人围观

在对某个目录进行压缩的时候,有时候想排除掉某个目录,示例如下:

比如文件目录包含以下文件及目录

api
api/addons
api/connect
api/connect/connect.php
api/google
api/remote
api/remote/mod

我们要压缩不包含google文件夹、connect/connect.php以及remote下mod文件夹

tar -zcvf mytest.tar.gz api --exclude=google --exclude=connect/connect.php  --exclude=remote/mod

【注意:1、--exclude=file1 而不是 --exclude file1  2、要排除一个目录是--exclude=dir1而不是--exclude=dir1/】

除非注明,均为湛蓝天空原创,转载请注明本文网址:http://skyhome.cn/server/485.html

标签:tar(1)排除目录(1)
评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)