1834008 Members
1803 Online
110063 Solutions
New Discussion

Re: about version

 
SOLVED
Go to solution
juno2
Super Advisor

about version

how to how the what is the version of the tools on the unix eg. glance ? thx.
6 REPLIES 6
Michael Tully
Honored Contributor
Solution

Re: about version

Most, if not all binaries will give you some sort of version number and sometimes the patch revision as well.

Try:
$ what /opt/perf/bin/glance
Anyone for a Mutiny ?
Rajeev  Shukla
Honored Contributor

Re: about version

Hi,
Some softwares can tell version by -V or -v options the best is to go through their man pages and other way is to run a command say for sendmail version

what $(which sendmail)

that will give you the sendmail version.

Cheers
Rajeev
juno2
Super Advisor

Re: about version

I can't find "what" on my UX 10.20 , is there any other method to check ? thx.
malay boy
Trusted Contributor

Re: about version

Hi Juno,
If you run glance,the software version are on top of the display.Here are the example from my glance:

B3692A GlancePlus C.02.40.00 18:17:59 server01 9000/859

This is display on the top of glance output.so the software version are 2.40 and my server name are server01.

hope this help.

regards
mB
There are three person in my team-Me ,myself and I.
Michael Tully
Honored Contributor

Re: about version

On your 10.20 system:

$ whereis what (you should get)
what: /usr/bin/what /usr/share/man/man1.Z/what.1

$ /usr/bin/what /opt/perf/bin/glance

By default the 'what' command is part of the Core OS.
Anyone for a Mutiny ?
twang
Honored Contributor

Re: about version

Rajeev gave a very good command to find out utility version already:
#what $(which glance)

or you may use swlist to find out version of installed software too:
#swlist -l product |grep -i glance