hdf5/h5comp

11 lines
118 B
Plaintext
Raw Normal View History

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