summaryrefslogtreecommitdiffstats
path: root/tools/h5repack/h5repack.sh.in
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2007-11-16 20:15:19 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2007-11-16 20:15:19 (GMT)
commitd3507c4a5aaf7709e7794ceb6a54912ad123a6e0 (patch)
treec5fced5305abc85381f4d2f4403a956366c75f1c /tools/h5repack/h5repack.sh.in
parentbe3ccfa47de5d0e80cc64421d6b4b9ed3df8bbcc (diff)
downloadhdf5-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-xtools/h5repack/h5repack.sh.in4
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=$?