# sys-compare Check Filesystem Integrity via "Snapshots" containing hash of all files within specified directories. ## Installation ```shell cargo install --path ./ ``` ### Modes ```shell Usage: sys-compare Commands: create compare help Print this message or the help of the given subcommand(s) Options: -h, --help Print help ``` ### Create Snapshot ```shell Usage: sys-compare create --root-dir --output-path Options: -r, --root-dir -o, --output-path -h, --help Print help ``` ### Compare Snapshots ```shell Usage: sys-compare compare [OPTIONS] --left --right Options: -l, --left -r, --right -s, --selection -c [possible values: true, false] -h, --help Print help ``` ## Development and Collaboration #### Feel free to open a pull request, please run the following prior to your submission please! echo "Run clippy"; cargo clippy -- -D clippy::all echo "Format source code"; cargo fmt -- --check