Implement "entropy" command.

This commit is contained in:
2015-05-19 06:04:21 +01:00
parent eb33aad7ef
commit 4fc2e234b0
5 changed files with 217 additions and 0 deletions

View File

@@ -99,6 +99,12 @@ namespace DiscImageChef
isVerbose = ChecksumOptions.Verbose;
Commands.Checksum.doChecksum(ChecksumOptions);
break;
case "entropy":
EntropySubOptions entropyOptions = (EntropySubOptions)invokedVerbInstance;
isDebug = entropyOptions.Debug;
isVerbose = entropyOptions.Verbose;
Commands.Entropy.doEntropy(entropyOptions);
break;
case "verify":
VerifySubOptions VerifyOptions = (VerifySubOptions)invokedVerbInstance;
isDebug = VerifyOptions.Debug;