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

Comments on How do I find out the version of a program in a terminal?

Parent

How do I find out the version of a program in a terminal?

+4
−0

How can I print the version of a program in the terminal, so that I know which one I have installed?

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

OS? (2 comments)
Post
+10
−0

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.

History
Why does this post require attention from curators or moderators?
You might want to add some details to your flag.

1 comment thread

Trying -v blindly might be dangerous (4 comments)
Trying -v blindly might be dangerous
alx‭ wrote 6 months ago

I would first check (maybe in the manual page) that -v means version for that program. Otherwise, you may be instructing that program to do some destructive action that happens to be mapped to the -v flag.

Also, that problem makes it simpler to go first for the package manager (unless you already know that the program behaves well for -v).

Monica Cellio‭ wrote 6 months ago

Good point -- -v could also mean "verbose"...

Quasímodo‭ wrote 6 months ago

Good point, but do you know one such program? That might warrant a nudge to the maintainer to change it, as it is highly surprising behavior.

alx‭ wrote 5 months ago · edited 5 months ago

cat -v, which is considered as harmful stuff by some (many?) (http://harmful.cat-v.org/cat-v). It's not destructive, though (unless you pipe it to something else, but of course you don't pipe it to something destructive if you're just checking the version). :)