Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

h5ls(1) [debian man page]

h5ls(1) 						      General Commands Manual							   h5ls(1)

NAME
h5ls - Prints information about a file or dataset. SYNOPSIS
h5ls [OPTIONS] file [OBJECTS...] DESCRIPTION
h5ls prints selected information about file objects in the specified format. OPTIONS
-h or -? or --help Print a usage message and exit. -a or --address Print addresses for raw data. -d or --data Print the values of datasets. -e or --errors Show all HDF5 error reporting. -f or --full Print full path names instead of base names. -g or --group Show information about a group, not its contents. -l or --label Label members of compound datasets. -r or --recursive List all groups recursively, avoiding cycles. -s or --string Print 1-bytes integer datasets as ASCII. -S or --simple Use a machine-readable output format. -wN or --width=N Set the number of columns of output. -v or --verbose Generate more verbose output. -V or --version Print version number and exit. -x or --hexdump Show raw data in hexadecimal format. file The file name may include a printf(3C) integer format such as %%05d to open a file family. objects Each object consists of an HDF5 file name optionally followed by a slash and an object name within the file (if no object is speci- fied within the file then the contents of the root group are displayed). The file name may include a printf(3C) integer format such as "%05d" to open a file family. SEE ALSO
h5dump(1), h5diff(1), h5repart(1), h5import(1), gif2h5(1), h52gif(1), h5perf(1) h5ls(1)

Check Out this Related Man Page

h5unjam(1)						      General Commands Manual							h5unjam(1)

NAME
h5unjam - Extract the user block from a HDF5 file SYNOPSIS
h5unjam -i in_file.h5 [-u user_block | --delete] [-o out_file.h5] DESCRIPTION
h5unjam splits an HDF5 file, writing the user block to a file or stdout and the HDF5 file to an HDF5 file with a header at byte 0 (i.e., with no user block). If out_file.h5 is given, a new file is created with the in_file.h5 without the user block. In this case, infile.h5 is unchanged. If out_file.h5 is not specified, the user_block is removed and in_file.h5 is rewritten, starting at byte 0. If user_block is set, the user block will be written to user_block. If user_block is not set, the user block (if any) will be written to stdout. If --delete is selected, the user block will not be not written. EXAMPLE USAGE
For an HDF5 file, with_ub.h5, with a user block, extract the user block to user_block.txt and the HDF5 file to wo_ub.h5. h5unjam -i with_ub.h5 -u user_block.txt -i wo_ub.h5 RETURN VALUE
h5unjam returns the size of the output file, or -1 if an error occurs. CAVEATS
This tool copies all the data (sequentially) in the file(s) to new offsets. For a large file, this copy will take a long time. The most efficient way to create a user block is to create the file with a user block (see H5Pset_user_block), and write the user block data into that space from a program. The user block is completely opaque to the HDF5 library and to the h5jam and h5unjam tools. The user block is simply read or written as a string of bytes, which could be text or any kind of binary data. It is up to the user to know what the contents of the user block means and how to process it. When the user block is extracted, all the data is written to the output, including any padding or unwritten data. This tool moves the HDF5 file through byte copies, i.e., it does not read or interpret the HDF5 objects. SEE ALSO
h5dump(1), h5ls(1), h5diff(1), h5import(1), gif2h5(1), h52gif(1), h5perf(1), h5jam(1). h5unjam(1)
Man Page

4 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

ACF2 equivalent in Unix or Linux ?

In IBM Mainframe they have something called ACF2 rule which is essentially used to control the dataset access. It is kind of a list-based access control for mainframe datasets. Is there anything equivalent to ACF2 available in Unix ? Thanks Rabi (1 Reply)
Discussion started by: indra_saha
1 Replies

2. Shell Programming and Scripting

Parsing file to match strings

I have a file with the following format 12g data/datasets/cct 8g data/dataset/cct 10 g data/two 5g data/something_different 10g something_different 5g data/two is there a way to loop through this... (1 Reply)
Discussion started by: yawalias
1 Replies

3. Shell Programming and Scripting

echo + bc + format

Hi, I was trying to define a variable as a result of an operation, b=` echo $a+1 | bc -l` with a specific format (5 digits integer completing with zeros, 00025, for example) c=` printf "%05d\n" b ` Does anyone how can it be done in one step in bash shell to get the formatted... (2 Replies)
Discussion started by: josegr
2 Replies

4. UNIX for Dummies Questions & Answers

compare 2 very large lists of different length

I have two very large datasets (>100MB) in a simple vertical list format. They are of different size and with different order and formatting (e.g. whitespace and some other minor cruft that would thwart easy regex). Let's call them set1 and set2. I want to check set2 to see if it contains... (2 Replies)
Discussion started by: uiop44
2 Replies