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.
11 lines
157 B
11 lines
157 B
17 years ago
|
#!/bin/bash
|
||
|
|
||
|
ARCH=$(uname -m)
|
||
|
|
||
|
case $ARCH in
|
||
|
x86_64 | ppc64 | ia64 | s390 ) BITS=64;;
|
||
|
* ) BITS=32;;
|
||
|
esac
|
||
|
|
||
|
exec $0-${BITS}
|