如何检查 ubuntu 14.04 LTS 上的 flex 和 bison 版本?

如何检查 ubuntu 14.04 LTS 上的 flex 和 bison 版本?

大多数 Linux 和 BSD 系统都带有 flex 和 bison 作为基础系统的一部分。我想检查我的 Linux 系统上当前的 flex 和 bison 版本。该怎么做?

答案1

使用--version选项:

$ bison --version
bison (GNU Bison) 3.0.2
Geschrieben von Robert Corbett und Richard Stallman.

Copyright © 2013 Free Software Foundation, Inc.
Dies ist freie Software; die Kopierbedingungen stehen in den Quellen. Es
gibt keine Garantie; auch nicht für VERKAUFBARKEIT oder FÜR SPEZIELLE ZWECKE.


$ flex --version 
flex 2.5.39

相关内容