Go to file
2024-03-29 10:37:06 -04:00
src wip clip 2024-03-29 10:37:06 -04:00
.gitignore init 2024-03-18 15:33:42 -04:00
Cargo.toml wip clip 2024-03-28 19:05:09 -04:00
LICENSE Initial commit 2024-03-18 15:27:58 -04:00
README.md . 2024-03-26 12:52:11 -04:00

sys-compare

work in progress

Create Snapshot

./sys-compare create [snapshot] [root_dir]

cargo run -- create ./test1.snap /home/foxx/Documents/
cargo run -- create ./test2.snap /home/foxx/Documents/

Compare Snapshots

./sys-compare compare [.snap] [.snap] [created]|[deleted]|[changed]

cargo run -- compare ./test1.snap ./test2.snap created

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