rsync具体使用方法
时间: 2023-11-08 14:34:22 浏览: 115
Rsync使用指南
4星 · 用户满意度95%
rsync是一种高效的文件同步工具,可以用来本地或远程同步文件和目录。它可以在本地和远程计算机之间进行同步,也可以在本地和远程计算机之间进行拷贝和备份。以下是rsync的具体使用方法:
1.将本地目录同步到远程目录:
rsync -avz /local/path user@remote:/remote/path
2.将远程目录同步到本地目录:
rsync -avz user@remote:/remote/path /local/path
3.同步两个远程目录:
rsync -avz user1@remote1:/remote1/path user2@remote2:/remote2/path
4.删除目标目录中不存在的文件:
rsync -avz --delete /local/path user@remote:/remote/path
5.排除某些文件或目录:
rsync -avz --exclude 'dir1' --exclude 'file1' /local/path user@remote:/remote/path
注意:在使用rsync进行文件同步时,请注意文件权限和所有权等,以便避免不必要的麻烦。
阅读全文