hdf5/h5comp
2017-09-08 21:29:09 +02:00

11 lines
164 B
Bash

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