mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-24 15:25:00 +08:00
ba717ead8b
dumper new features Description: 1) added options for not printing : datasets, groups, datatypes, links 2) added a section for the user block 3) in the traversal routine, added the printing of an arrow for soft links and t he word HARDLINK for hardlinks the print of the file contents is made during traversal , instead of at the e nd of it (this is helpful for very large files, where the wait time can be very long) 4) changed the description of the fill value properties 5) added a colon after the printing of the array indices Solution: Platforms tested: linux AIX solaris Misc. update:
19 lines
405 B
SQL
19 lines
405 B
SQL
#############################
|
|
Expected output for 'h5dump -d /g1/dset2 --dataset /dset1 --dataset=/g1/g1.1/dset3 thlink.h5'
|
|
#############################
|
|
HDF5 "thlink.h5" {
|
|
DATASET "/g1/dset2" {
|
|
DATATYPE H5T_STD_I32BE
|
|
DATASPACE SIMPLE { ( 5 ) / ( 5 ) }
|
|
DATA {
|
|
(0), 0, 1, 2, 3, 4
|
|
}
|
|
}
|
|
DATASET "/dset1" {
|
|
HARDLINK "/g1/dset2"
|
|
}
|
|
DATASET "/g1/g1.1/dset3" {
|
|
HARDLINK "/g1/dset2"
|
|
}
|
|
}
|