Rsync
Este parece ser o caso de uso do rsync. Página inicial: link
Na página de manual :
Description
Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon. It offers a large number of options that control every aspect of its behavior and permit very flexible specification of the set of files to be copied. It is famous for its delta-transfer algorithm, which reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination. Rsync is widely used for backups and mirroring and as an improved copy command for everyday use.
Rsync finds files that need to be transferred using a "quick check" algorithm (by default) that looks for files that have changed in size or in last-modified time. Any changes in the other preserved attributes (as requested by options) are made on the destination file directly when the quick check indicates that the file's data does not need to be updated.
Some of the additional features of rsync are:
- support for copying links, devices, owners, groups, and permissions
- exclude and exclude-from options similar to GNU tar
- a CVS exclude mode for ignoring the same files that CVS would ignore
- can use any transparent remote shell, including ssh or rsh
- does not require super-user privileges
- pipelining of file transfers to minimize latency costs
- support for anonymous or authenticated rsync daemons (ideal for mirroring)
Um exemplo de um rsync seria:
rsync -avz user@host:'/src/' /dst
Alguns Gotcha's são os seguintes:
-
Esteja ciente de que o trailing '/' faz a diferença. Os dois seguintes são os mesmos
- rsync -avz / src / dst
- rsync -avz / src / / dst / src
-
Você deve ter cuidado com arquivos com espaços para que eles não sejam expandidos quando a cópia for executada no shell remoto.
- rsync -avz usuário @ host: '/ src / isto é ruim' / dst
- rsync -avz usuário @ host: "'/ src / isto é bom'" / dst
- rsync -avz usuário @ host: '/ src / this \ é \ ok \ too' / dst
Você precisa ter um daemon ssh para cópias remotas ou executar o rsync no modo daemon no computador remoto.
A primeira transferência levará algum tempo, mas as cópias subseqüentes deverão ser mais rápidas, pois copiarão apenas os arquivos que foram alterados em tamanho.
Também é útil usar regras de filtragem se você quiser pular certos tipos de arquivos ou diretórios.