This question already has answers here:

How to determine whether a given Linux is 32 bit or 64 bit?
(21个答案)
可能重复:
How to determine whether a given Linux is 32 bit or 64 bit?
有谁知道如何创建一个shell脚本sh文件,如果一个程序是64位系统,那么它可以对一个程序进行shell操作,如果是32位系统,那么它可以对另一个程序进行shell操作?
非常感谢。

最佳答案

if $(uname -m | grep '64'); then
  echo "ARCH: 64-bit"
else
  echo "ARCH: 32-bit"
fi

关于linux - Shell脚本,用于检测系统是32位还是64位,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12251049/

10-16 20:46