Home > php教程 > PHP开发 > body text

Note 007 rsync command compares files but does not synchronize them

黄舟
Release: 2016-12-26 10:58:01
Original
2685 people have browsed it

The rsync command is often used to synchronize files in Linux to ensure the consistency of files in two places. The system will automatically compare to ensure that the files on both sides are the same.

When using this command, another situation is that you want to know which files will be synchronized first, so as to avoid the wrong files from being synchronized when multiple people perform this type of operation.

Hy369 I have struggled with this issue several times, and this time I finally learned from it and decided to record it! !

Only compare the files that need to be synchronized without performing substantial synchronization. You only need to add additional parameters to the rsync command:

rsync -avzn -P 源地址 目标地址
rsync -avz -P --list-only 源地址 目标地址
Copy after login

The additional parameters can be -n or Yes --list-only, the effect is the same, but the latter displays more detailed information.

The above is the content of Note 007 rsync command that compares files but is not synchronized. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template