rsync 只同步目录结构不同步文件的方法
If you are using an older rsync version, try:
rsync -av --include='*/' --exclude='*' /path/to/src /path/to/dest/
rsync -av --include='*/' --exclude='*' /path/to/apache/logs/ root@www433.nixcraft.net.in:/path/to/apache/logs/
# cd /var/log/apache/
# rsync -av -f"+ */" -f"- *" . root@server2.nixcraft.com:/var/log/apache/
Sample outputs:
building file list ... done
./
cricketnow.in/
cyberciti.biz/
hexindia.net/
io9.in/
nixcraft.com/
theos.in/
sent 388 bytes received 98 bytes 972.00 bytes/sec
total size is 0 speedup is 0.00
You can also make local copies as follows:
# cd /var/log/apache/
# rsync -av -f"+ */" -f"- *" . /jailfs/apache/httpd_root/var/log/apache/
相关文章
win2008 r2 服务器环境配置(FTP/ASP/ASP.Net/PHP)
这篇文章主要想介绍websitepanel环境配置之FTP/ASP/ASP.Net/PHP运行环境的搭建,需要的朋友可以参考下2013-12-12使用 Koa + TS + ESLlint 搭建node服务器的过程详解
这篇文章主要介绍了使用 Koa + TS + ESLlint 搭建node服务器,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2022-05-05TCP socket SYN队列和Accept队列区别原理解析
这篇文章主要介绍了TCP socket SYN队列和Accept队列区别原理解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下2020-12-12
最新评论