summaryrefslogtreecommitdiffstats
path: root/tools/h5repack
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-31 17:54:39 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2007-10-31 17:54:39 (GMT)
commit5261f00f2e12017223f4151d8a416cfacf43410c (patch)
treee4bd3641c218813eaec51df0760b3ac5022e14b1 /tools/h5repack
parente15bdb05e6bf52525c1df48f8e8e01aba3ce288b (diff)
downloadhdf5-5261f00f2e12017223f4151d8a416cfacf43410c.zip
hdf5-5261f00f2e12017223f4151d8a416cfacf43410c.tar.gz
hdf5-5261f00f2e12017223f4151d8a416cfacf43410c.tar.bz2
[svn-r14226] new feature: add a -V version option to hrepack
tested: windows, linux
Diffstat (limited to 'tools/h5repack')
-rw-r--r--tools/h5repack/h5repack_main.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack_main.c b/tools/h5repack/h5repack_main.c
index 7f9c720..9c8b99f 100644
--- a/tools/h5repack/h5repack_main.c
+++ b/tools/h5repack/h5repack_main.c
@@ -42,6 +42,7 @@ void usage(void)
printf("-o output Output HDF5 File\n");
printf("[-h] Print this message\n");
printf("[-v] Verbose mode\n");
+ printf("[-V] Print HDF5 version number and exit\n");
printf("[-n] Use a native HDF5 type when repacking. Default is the file type\n");
printf("[-L, --latest] Use latest version of file format to create groups, datasets and datatypes\n");
printf("[-compact=<size>] Set the maximum number of links to store as header messages in a group\n");
@@ -160,8 +161,11 @@ int main(int argc, char **argv)
usage();
exit(0);
}
-
- if (strcmp(argv[i], "-i") == 0) {
+ else if (strcmp(argv[i], "-V") == 0) {
+ print_version(progname);
+ exit(0);
+ }
+ else if (strcmp(argv[i], "-i") == 0) {
infile = argv[++i];
}
else if (strcmp(argv[i], "-o") == 0) {