Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

85%
+10 −0
Q&A How do I find out the version of a program in a terminal?

Many programs have a --version option, so that's the first thing I try when I need to find this out. If that doesn't work, --help usually produces a full list of options, so if version info is pro...

posted 6mo ago by Monica Cellio‭  ·  edited 6mo ago by Monica Cellio‭

Answer
#2: Post edited by user avatar Monica Cellio‭ · 2024-06-06T01:05:03Z (6 months ago)
  • Many programs have a `--version` (or sometimes `-v`) option, so that's the first thing I try when I need to find this out. If neither of those works, `--help` or `-h` usually produces a full list of options, so if version info is provided in a non-standard way, that should lead you to it.
  • Unfortunately, not all applications provide this information. I don't know if you can get it from the OS.
  • Many programs have a `--version` option, so that's the first thing I try when I need to find this out. If that doesn't work, `--help` usually produces a full list of options, so if version info is provided in a non-standard way, that should lead you to it. (Some programs support `-v` for version, but it's possible that's instead mapped to something else, as pointed out in a comment, so be careful.)
  • Unfortunately, not all applications provide this information. I don't know if you can get it from the OS.
#1: Initial revision by user avatar Monica Cellio‭ · 2024-06-02T22:43:10Z (6 months ago)
Many programs have a `--version` (or sometimes `-v`) option, so that's the first thing I try when I need to find this out.  If neither of those works, `--help` or `-h` usually produces a full list of options, so if version info is provided in a non-standard way, that should lead you to it.

Unfortunately, not all applications provide this information.  I don't know if you can get it from the OS.