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