我有什么版本的Google Chrome?


28

如何找出我使用的Chrome版本?

我想要一个命令行方法,而不是GUI- chrome://chrome在url栏中访问。我需要能够在bash脚本中使用它。

我运行了命令google-chrome --help,但似乎没有--version选择。


您如何寻找帮助中的version选项?滚动浏览?如果这样做,它是否未列出选项google-chrome --help | grep version
Alaa Ali 2014年

可能是,但是大多数基本用户不会这样做,这就是为什么我问和回答这个问题的原因:)我自己第一次错过了它。
蒂姆(Tim)

1
哦。我没有注意到这是一个自我回答的问题= D。我的错。
Alaa Ali 2014年

Answers:


38

它确实列出了选项:

OPTIONS
       Google  Chrome has hundreds of undocumented command-line flags that are
       added and removed at the whim of the  developers.   Here,  we  document
       relatively stable flags.  

       ...

       --version
              Show version information.

因此,您可以将命令google-chrome与以下--version选项一起使用:

google-chrome --version

给出:

    Google Chrome 36.0.1985.125

对于以下命令,我正在使用grep和正则表达式,因为它更适应Google Chrome版本格式更改中的更改

要仅获取版本号,请运行以下命令:

google-chrome --version | grep -iE "[0-9.]{10,20}"

它给:

    36.0.1985.125   

还有这个:

google-chrome --version | grep -iE " [0-9]{1,3}.[0-9]{1,3}

仅提供主要版本号。

    36.0

如果您安装了Beta版:

运行此命令:

google-chrome-beta --version

给出:

Google Chrome 37.0.2062.58 beta

然后是gui方法:

您可以转到以下站点:

chrome://chrome

给你这个:

在此处输入图片说明

chrome://version

要么

about:

感谢Jeff Inventor Chrome操作系统

给出以下内容:

在此处输入图片说明

Google Chrome   36.0.1985.125 (Official Build 283153) 
OS  Linux 
Blink   537.36 (@177902)
JavaScript  V8 3.26.31.8
Flash   14.0.0.145
User Agent  Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36
Command Line    /opt/google/chrome/google-chrome --no-startup-window --flag-switches-begin --flag-switches-end
Executable Path /opt/google/chrome/google-chrome
Profile Path    /home/tim/.config/google-chrome/Default
Variations  e950616e-37fb3cc2
            c70841c8-4866ef6e
            3664a344-be9e69ba
            9e5c75f1-ad69ceb0
            24dca50e-837c4893
            ca65a9fe-91ac3782
            8d790604-9cb2a91c
            4ea303a6-3d47f4f4
            d8f57532-f23d1dea
            b2612322-f8cf70e2
            5a3c10b5-e1cc0f14
            244ca1ac-4ad60575
            5e29d81-f23d1dea
            3ac60855-486e2a9c
            246fb659-bca011b3
            f296190c-cdc3d902
            4442aae2-4ad60575
            ed1d377-e1cc0f14
            75f0f0a0-4ad60575
            e2b18481-a5822863
            e7e71889-e1cc0f14
            cbf0c14e-bf3e6cfd

我的代词是他/他


4

对于更通用的解决方案,您可以使用apt-cache policy,例如:

$ apt-cache policy google-chrome-stable
google-chrome-stable:
  Installed: 36.0.1985.125-1
  Candidate: 36.0.1985.125-1

这将与通过软件包管理器安装的所有软件一起使用。


36.0.1985.125-1 0到底是什么-1 0
蒂姆(Tim)

1
@Tim那是“ debian版本”。有关更多信息,请参见此处
谷氨酰胺


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.