You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
|
|
ARCH=$(uname -m)
|
|
|
|
case $ARCH in
|
|
x86_64 | ppc64 | ia64 | s390x ) BITS=64;;
|
|
* ) BITS=32;;
|
|
esac
|
|
|
|
exec $0-${BITS} "$@"
|