52ll.org
52ll.org

shell脚本中获取系统位数

脚本内容

if [ $(getconf WORD_BIT) = '32' ] && [ $(getconf LONG_BIT) = '64' ];then
	command_64
else
	command_32
fi

命令解读

getconf WORD_BITgetconf LONG_BIT获得wordlong的位数。64位系统中应分别得到3264,满足布尔运算符and,执行command_64,反之执行command_32

参考来源

http://www.jb51.net/article/58760.htm

发表回复

textsms
account_circle
email

52ll.org

shell脚本中获取系统位数
脚本内容 if [ $(getconf WORD_BIT) = '32' ] && [ $(getconf LONG_BIT) = '64' ];then command_64 else command_32 fi 命令解读 用getconf WORD_BIT和getconf LONG_BIT…
扫描二维码继续阅读
2018-05-25