옵션이 나열되어 있습니다.
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
Chrome 버전 형식 변경 사항에 훨씬 적합하므로 regex를 사용 하고 있습니다.
버전 번호 만 얻으려면 다음 명령을 실행하십시오.
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
베타 버전을 설치 한 경우 :
이 명령을 실행 :
google-chrome-beta --version
제공합니다 :
Google Chrome 37.0.2062.58 beta
그리고 gui 메소드가 있습니다 :
다음 사이트로 이동할 수 있습니다.
chrome://chrome
당신에게 이것을 제공합니다 :
과
chrome://version
또는
about:
Jeff Inventor Chrome OS 에게 감사합니다 .
이것을 제공합니다 :
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
내 대명사는
version
도움말 에서 옵션을 어떻게 찾았 습니까? 스크롤? 그렇게하면 옵션이 표시되지google-chrome --help | grep version
않습니까?