X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=finddup.git;a=blobdiff_plain;f=finddup.c;h=7a20257d7b48d7baaddfbc7e3df6237a9151fc9a;hp=514a67644c153d7f9ab7bab54e01f4d4b2b270aa;hb=557365f6f9347243c49f06b4cfa947a259af2548;hpb=776548b8b43cfaf709d8f501ebb697c16e8d7832 diff --git a/finddup.c b/finddup.c index 514a676..7a20257 100644 --- a/finddup.c +++ b/finddup.c @@ -58,7 +58,7 @@ int show_progress = 1; /* 1 means show a progress bar when we are in a int show_hits = 1; /* 1 means to show the files from dir2 corresponding to the ones from dir1 */ -int show_groups = 0; /* 1 means to show the group IDs when printing +int show_groups = 1; /* 1 means to show the group IDs when printing file names */ /********************************************************************/ @@ -342,7 +342,7 @@ void print_help(FILE *out) { fprintf(out, " -h show this help\n"); fprintf(out, " -d ignore dot files and directories\n"); fprintf(out, " -c do not show which files in DIR2 corresponds to those in DIR1\n"); - fprintf(out, " -g show the file groups\n"); + fprintf(out, " -g do not show the file groups\n"); fprintf(out, " -r show the real file paths\n"); fprintf(out, "\n"); fprintf(out, "Report bugs and comments to \n"); @@ -380,7 +380,7 @@ int main(int argc, char **argv) { break; case 'g': - show_groups = 1; + show_groups = 0; break; case 'c':