diff options
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 +} + |