Copy Confirmer

Command line tool that lets you check if one library is copied into other(s).

Usage

Warning: The crate is still pretty new and there are some big changes to the API to be expected.

Example: Check with one destination directory

To check if directory /path/to/source has been copied into /path/to/destination: copcon -s /path/to/source -d /path/to/destination If there are any files in the source dir missing in the destination (say, /path/to/source/missing_file is missing from /path/to/destination), the program will print the missing files: diff Missing files: "/path/to/source/missing_file"

Example: Check with multiple destinations

To check if /path/to/source has been divided into two directories /path/to/destination1 and /path/to/destination2 run: copcon -s /path/to/source -d /path/to/destination_1 -d /path/to/destination_2 If all files in the source directory are present in one of the destination directories, copy confirmer will print: All files present in destinations

CLI options

``` Usage: copcon [OPTIONS] --source --destination

Options: -s, --source Name of the person to greet -d, --destination Destination directories -j, --jobs Number of threads for checksum calculation [default: 1] -h, --help Print help -V, --version Print version ```