tar排除指定目录打包】的更多相关文章

转载自:http://hxl2009.blog.51cto.com/779549/476513 假设 test目录下有 1 2 3 4 5 这5个目录现在要将 3 4 5目录tar打包,1和2目录不要命令如下: tar -zcvf test.tar.gz --exclude=1 --exclude=2 test 或 tar -zcvf test.tar.gz --exclude=test/1 --exclude=test/2 test 看man tar帮助,--exclude后面跟的好像是正则注…
压缩命令主要用到tar打包和split分割,命令如下: tar czf - aaa | split -b 1024m - bbb.tar.gz_ aaa可以是文件也可以是目录, 大小可以是b.k.m这3个单位. 解压是: cat xxx.tar.gz_* | tar zvxf - 也可以先把包合起来再解压: cat xxx.tar.gz_* >xxx.tar.gz tar zvxf xxx.tar.gz 以上,如果有不同格式,请适当调整参数 转:http://blog.csdn.net/a5na…
----before-upgrade./ --exclude=apache-tomcat-/logs --exclude=apache-tomcat-/work 注意,--exclude后面跟路径名称,最后一个符号一定不能用/闭合 以下为错误的用法,请注意比对差异 ----before-upgrade./ --exclude=apache-tomcat-/logs/work/…
假设 test目录下有 1 2 3 4 5 这5个目录, 1下有6 7两个目录, 现在要将3 4 5 6目录tar打包,2和1下的6这两个目录不要.命令如下: Example[www]#cd test[test]#tar -zcvf test.tar.gz --exclude=1/6 --exclude=2 test或 Example[www]#tar -zcvf test.tar.gz --exclude=test/1/6 --exclude=test/2 test查看 tar –help 帮…
unison + inotify  实现web 数据双向同步   unison 是一款跨平台的文件同步对象,不仅支撑本地对本地同步,也支持通过SSH,RSH和Socket 等网络协议进行同步.unison 支持双向同步,你可以同A同步到B ,也可以从B同步到A,这些都需要额外的设定.     源码包下载地址:链接:https://pan.baidu.com/s/1b8DU70 密码:sby7 1. 两台服务器都编译安装这三个源码包,在此只写在一台服务器上的编译安装的过程,另一台请自行安装 [ro…
很常见的情况:我想同步/myweb下的 一些php文件 ,  但是不想复制/myweb/log/里边的一些日志文件,因为这些文件太大了,备份也是没有意义的. 现在如果想避开某个路径  直接添加—exclude 即可 比如—exclude “./log” –exclude ‘./log/file’ Note: the directory path is relative to the folder you are backing up. rsync备份时排除指定目录或文件 要排除指定目录,可以在客…
1.ZIP 压缩时排除一个文件夹下所有内容zip -r sss.zip sss/ -x "sss/222/*" 压缩时排除指定多个文件夹下所有内容zip -r sss.zip sss/ -x "sss/222/*" -x "sss/333/*" 2.tar.gz tar.gz压缩:进入www.888.com文件夹内,排除某些文件夹打包压缩其余文件cd /home/www.888.com/tar -zcvf 888.tar.gz ./* --exc…
1.find查找排除单个目录 查找当前目录或者子目录下所有.txt文件,但是跳过子目录sk find . -path "./sk" -prune -o -name "*.txt" -print find . -type f -executable ! -path "./.git/*" .:在当前目录下查找 -type f:仅查找一般文件 -executable:文件具有可执行权限 ! -path "./.git/*":这里是关…
背景 将Server1上的数据同步到Server2: Server1目录结构: /us_data/yahoo └── qlib ├── calendars ├── dataset_cache ├── features ├── features_cache └── instruments Server2目录结构: data └── us_qlib_data └── yahoo └── qlib 我需要将 Server1 里的 qlib 传到 Server2 yahoo 目录下: 并且 Server…
tar -zcvf tomcat.tar.gz --exclude=tomcat/logs --exclude=tomcat/libs tomcat…