hdf5/h5comp
cherry530 6e1dba0968 fix some commands failed
Signed-off-by: cherry530 <xuping33@huawei.com>
2023-04-10 18:43:46 +08:00

11 lines
118 B
Bash

#!/bin/bash
ARCH=$(uname -m)
case $ARCH in
x86_64 ) BITS=64;;
* ) BITS=32;;
esac
exec $0-${BITS} "$@"