mirror of
https://github.com/jgm/pandoc.git
synced 2026-08-31 20:55:45 +00:00
15 lines
201 B
Bash
Executable File
15 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
cputype=`sysctl -n hw.cputype`
|
|
sixtyfourbit=`sysctl -n hw.cpu64bit_capable`
|
|
|
|
if [ "x$cputype" != "x7" ] # x86
|
|
then
|
|
exit 112
|
|
fi
|
|
|
|
if [ "x$sixtyfourbit" != "x1" ] # 64 bit
|
|
then
|
|
exit 113
|
|
fi
|
|
|