mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[svn-r2642] Purpose:
Bug fix Description: The documentation on how to dump attribute data was not complete enough. Some people got confused on the commandline syntax (you have to specify the "path" from the root group to the attribute to dump it). I put some examples in to show how to correctly dump attributes. Platforms tested: Viewed with Netscrape.
This commit is contained in:
parent
61ab6a6b46
commit
2c7f74e088
@ -158,6 +158,25 @@ These tools enable the user to examine HDF5 files interactively.
|
||||
<dt><em>file</em>
|
||||
<dd>The file to be examined.
|
||||
</dl>
|
||||
<dt><strong>Examples:</strong>
|
||||
<ol>
|
||||
<li>Dumping the group <code>/GroupFoo/GroupBar</code> in the file
|
||||
<code>quux.h5</code>:
|
||||
<blockquote>
|
||||
<code>h5dump -g /GroupFoo/GroupBar quux.h5</code>
|
||||
</blockquote></li>
|
||||
<li>Dumping the dataset <code>Fnord</code> in the group
|
||||
<code>/GroupFoo/GroupBar</code> in the file <code>quux.h5</code>:
|
||||
<blockquote>
|
||||
<code>h5dump -d /GroupFoo/GroupBar/Fnord quux.h5</code>
|
||||
</blockquote></li>
|
||||
<li>Dumping the attribute <code>metadata</code> of the dataset
|
||||
<code>Fnord</code> which is in group
|
||||
<code>/GroupFoo/GroupBar</code> in the file <code>quux.h5</code>:
|
||||
<blockquote>
|
||||
<code>h5dump -a /GroupFoo/GroupBar/Fnord/metadata quux.h5</code>
|
||||
</blockquote></li>
|
||||
</ol>
|
||||
<dt><strong>Current Status:</strong>
|
||||
<dd>The current version of <code>h5dump</code> displays the
|
||||
following information:
|
||||
|
Loading…
Reference in New Issue
Block a user