diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-11-16 20:15:19 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2007-11-16 20:15:19 (GMT) |
commit | d3507c4a5aaf7709e7794ceb6a54912ad123a6e0 (patch) | |
tree | c5fced5305abc85381f4d2f4403a956366c75f1c /tools/h5repack/h5repack.sh.in | |
parent | be3ccfa47de5d0e80cc64421d6b4b9ed3df8bbcc (diff) | |
download | hdf5-d3507c4a5aaf7709e7794ceb6a54912ad123a6e0.zip hdf5-d3507c4a5aaf7709e7794ceb6a54912ad123a6e0.tar.gz hdf5-d3507c4a5aaf7709e7794ceb6a54912ad123a6e0.tar.bz2 |
[svn-r14264] new features: 1) new usage for h5diff " A la" h5dump format
2) new usage for h5repack and new command line parsing using the tools library parsing code
tested: windows, linux, solaris
Diffstat (limited to 'tools/h5repack/h5repack.sh.in')
-rwxr-xr-x | tools/h5repack/h5repack.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5repack/h5repack.sh.in b/tools/h5repack/h5repack.sh.in index 01f7c10..25a4936 100755 --- a/tools/h5repack/h5repack.sh.in +++ b/tools/h5repack/h5repack.sh.in @@ -122,9 +122,9 @@ TOOLTEST() outfile=$path/out.$1 shift if [ "`uname -s`" = "TFLOPS O/S" ]; then - $RUNSERIAL $H5REPACK_BIN -i $infile -o $outfile $@ + $RUNSERIAL $H5REPACK_BIN $@ $infile $outfile else - $RUNSERIAL $H5REPACK_BIN -i $infile -o $outfile "$@" + $RUNSERIAL $H5REPACK_BIN "$@" $infile $outfile fi RET=$? |