[svn-r14311] enhancement: change the usage example for multiple filters

to note that SHUF should be used before GZIP and that the order specified in command line is the order filters are applied

tested: windows, linux
This commit is contained in:
Pedro Vicente Nunes 2007-11-29 15:51:32 -05:00
parent c4c9f5cf0a
commit 129ef4da90

View File

@ -228,9 +228,9 @@ static void usage(const char *prog)
printf(" Using latest file format with maximum compact group size of 10 and\n");
printf(" and minimum shared datatype size of 20\n");
printf("\n");
printf("5) h5repack -f GZIP=1 -f SHUF file1 file2 \n");
printf("5) h5repack -f SHUF -f GZIP=1 file1 file2 \n");
printf("\n");
printf(" Add both filters GZIP and SHUF to all datasets\n");
printf(" Add both filters SHUF and GZIP in this order to all datasets\n");
printf("\n");
}