sys-compare/README.md

41 lines
932 B
Markdown
Raw Normal View History

2024-03-18 19:32:37 +00:00
# sys-compare
2024-03-29 14:46:28 +00:00
### Modes
```shell
Usage: sys-compare <COMMAND>
Commands:
create
compare
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
```
2024-03-18 23:01:37 +00:00
### Create Snapshot
```shell
2024-03-29 14:46:28 +00:00
Usage: sys-compare create --root-dir <ROOT_DIR> --output-path <OUTPUT_PATH>
Options:
-r, --root-dir <ROOT_DIR>
-o, --output-path <OUTPUT_PATH>
-h, --help Print help
2024-03-18 23:01:37 +00:00
```
2024-03-25 18:52:39 +00:00
### Compare Snapshots
2024-03-18 23:01:37 +00:00
```shell
2024-03-29 14:46:28 +00:00
Usage: sys-compare compare [OPTIONS] --left <LEFT> --right <RIGHT>
Options:
-l, --left <LEFT>
-r, --right <RIGHT>
-s, --selection <SELECTION>
-h, --help Print help
2024-03-18 23:01:37 +00:00
```
2024-03-26 16:52:11 +00:00
## 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