sync-mht

Fast incremental file transfer using Merkle-Hash-Trees

https://github.com/ekarayel/sync-mht

Version on this page:0.3.8.4
LTS Haskell 6.35:0.3.8.5
Stackage Nightly 2016-05-25:0.3.8.4
Latest on Hackage:0.3.8.5

See all snapshots sync-mht appears in

MIT licensed and maintained by Emin Karayel
This version can be pinned in stack with:sync-mht-0.3.8.4@sha256:a7c3a01912f1f80253ebcc1d0eed0bb488d145e9073e32c1079662a50096ea41,4948

sync-mht

Build Status codecov.io Hackage Release Stackage LTS 3 Stackage Nightly

Synopsis

Fast incremental file transfer using Merkle-Hash-Trees

Description

A command line tool that can be used to incrementally synchronize a directory hierarchy with a second one. It is using a Merkle-Hash-Tree to compare the folders, such that the synchronization time and communication (round) complexity grows only logarithmically with the size of the directories (assuming the actual difference of the directories is small).

The communication happens through standard streams between parent and child processes, which can easily be routed through remote command execution tools.

Examples

The following command

sync-mht -s foo/ -d bar

will synchronize the local folder bar/ with the local folder foo/, but

sync-mht -s foo/ -d remote:/bar -r "ssh [email protected] sync-mht"

will synchronize the folder bar/ in the home directory of the user fred on the host machine example.org with the local folder foo/.

It is also possible to use it with docker, e.g.

sync-mht -s foo/ -d remote:/bar -r "docker run -i --volumes-from bar ekarayel/sync-mht sync-mht"

to synchronize the folder /bar (of the container named bar) with the local folder foo/.

Note that: The options -a -u –delete respectively, allow copying of files to the target directory, updating files that are already in the target directory - not matching the contents in the source directory and deleting files that are in the destination directory but not in the source directory.

Setup

Installing the latest release of sync-mht with stack:

stack install sync-mht

Contribution

If you want to contribute - cloning the latest commit and building can be done using the following steps:

git clone --recursive https://github.com/ekarayel/sync-mht.git
cd sync-mht
stack exec runhaskell configure.hs
stack install