diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-08-24 21:48:51 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2006-08-24 21:48:51 (GMT) |
commit | 896f001f33ef55ac8b669acd3195fddc763eaf0a (patch) | |
tree | cc3e60c099e84f72c1c99972607dbe779f1a5e53 /tools/h5copy | |
parent | 0274a5f3a23c33b52875cb646e319f2784c04595 (diff) | |
download | hdf5-896f001f33ef55ac8b669acd3195fddc763eaf0a.zip hdf5-896f001f33ef55ac8b669acd3195fddc763eaf0a.tar.gz hdf5-896f001f33ef55ac8b669acd3195fddc763eaf0a.tar.bz2 |
[svn-r12628]
updated the usage message of h5copy
Diffstat (limited to 'tools/h5copy')
-rw-r--r-- | tools/h5copy/h5copy.c | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/tools/h5copy/h5copy.c b/tools/h5copy/h5copy.c index 28d768c..a7908c3 100644 --- a/tools/h5copy/h5copy.c +++ b/tools/h5copy/h5copy.c @@ -57,15 +57,15 @@ usage (void) fprintf(stderr, "\ usage: h5copy [OPTIONS] [OBJECTS...]\n\ OBJECTS\n\ - -i input file name\n\ - -o output file name\n\ - -s source object name\n\ - -d destination name\n\ + -i, --input input file name\n\ + -o, --output output file name\n\ + -s, --source source object name\n\ + -d, --destination destination object name\n\ OPTIONS\n\ - -h Print a usage message and exit\n\ - -v Print information about OBJECTS and OPTIONS\n\ - -V Print tool version\n\ - -f Flag type\n\n\ + -h, --help Print a usage message and exit\n\ + -v, --verbose Print information about OBJECTS and OPTIONS\n\ + -V, --version Print version number and exit\n\ + -f, --flag Flag type\n\n\ Flag type is one of the following strings:\n\n\ shallow Copy only immediate members for groups\n\ soft Expand soft links into new objects\n\ @@ -410,4 +410,5 @@ leave(int ret) h5tools_close(); exit(ret); -}
\ No newline at end of file +} + |