A simple command line tool to detector the potential conflicted classes in jars The similar tool called jarfish in java.
```
Usage: jcd [OPTIONS] --jars
Options:
-j, --jars
```
shell
jcd --jars "a.jar;b.jar" --exclude package1/to/exclude --exclude package2/to/exclude
By default, the class only recognized as conflicted when it has the same class name but with different size.
It can be tuned to check crc number -c crc
or disable check with -c none
.