Add long sector read support to cli_compare command

This commit is contained in:
2025-10-10 22:06:00 +01:00
parent 258d132fbf
commit c4e5b51e6a
4 changed files with 29 additions and 11 deletions

View File

@@ -117,11 +117,13 @@ void usage_compare()
void usage_cli_compare()
{
printf("\nUsage:\n");
printf(" aaruformattool cli-compare <filename1> <filename2>\n\n");
printf(" aaruformattool cli-compare [-l] <filename1> <filename2>\n\n");
printf("Compares two AaruFormat images sector by sector and lists all different sectors.\n");
printf("Arguments:\n");
printf(" <filename1> Path to first image file.\n");
printf(" <filename2> Path to second image file.\n");
printf("Options:\n");
printf(" -l Use long sector read (includes tags and metadata).\n");
}
void usage_convert()