一行shell判断Linux是64位还是32位 Leave a reply 一行就能搞定,输出32或者64 $ getconf LONG_BIT $ 64 用在Makefile里非常给力…… OS = $(shell getconf LONG_BIT)[......] 继续阅读