脚本内容
if [ $(getconf WORD_BIT) = '32' ] && [ $(getconf LONG_BIT) = '64' ];then command_64 else command_32 fi
命令解读
用getconf WORD_BIT
和getconf LONG_BIT
获得word
和long
的位数。64
位系统中应分别得到32
和64
,满足布尔运算符and
,执行command_64
,反之执行command_32
if [ $(getconf WORD_BIT) = '32' ] && [ $(getconf LONG_BIT) = '64' ];then command_64 else command_32 fi
用getconf WORD_BIT
和getconf LONG_BIT
获得word
和long
的位数。64
位系统中应分别得到32
和64
,满足布尔运算符and
,执行command_64
,反之执行command_32
发表回复