hdf5/h5comp
cherry530 0e03dc095e fix some commands failed
Signed-off-by: cherry530 <xuping33@huawei.com>
(cherry picked from commit 0256ebc76a294566a2bda3d71579c8a86c45d8ef)
2023-04-11 10:59:17 +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} "$@"