简体   繁体   中英

how do I know what version of gjslint I have installed?

This may be a dumb question, but I cannot figure it out. Doing gjslint --help does not provide the answer, and --version is not a valid flag.

Any ideas?

Run this command:

cat `which gjslint` | grep [0-9] --color=always

or

cat $(which gjslint) | grep [0-9] --color=always

This one-liner prints out only the version number, convenient eg. if you want to use it in a script:

which gjslint | xargs cat | grep "ENTRY-SCRIPT" | sed 's|.*closure-linter==\([.0-9]*\).*|\1|'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM