How would I find the cygwin version which has been

2020-05-15 15:19发布

Cygwin - How would I find the Cygwin's version which has been installed on my machine? (Win Vista)

2条回答
你好瞎i
2楼-- · 2020-05-15 15:27

With the uname utility, as on other POSIX systems.

uname -r
查看更多
别忘想泡老子
3楼-- · 2020-05-15 15:43

If you want to detect if you're running the 32 bit or 64 bit version, the -m switch will tell you:

uname -m

"i686" for the 32-bit version, "x86_64" if it's 64-bit.

uname -a

..gives you all the information at once. Check man uname for details.

(This is also answered in How do I tell whether my cygwin installation is 32 or 64 bit?)

查看更多
登录 后发表回答