I want to fetch the java version in linux in a single command. How can I achieve it. I am new to awk so I am trying something like java -version|awk '{print$3}' but no luck please help me fetch 1.6.0_21 from the below java version output

java version "1.6.0_21"
Java(TM) SE Runtime Environment (build 1.6.0_21-b06)
Java HotSpot(TM) 64-Bit Server VM (build 17.0-b16, mixed mode)
link|improve this question

feedback

1 Answer

up vote 5 down vote accepted
  1. Redirect stderr to stdout.
  2. Get first line
  3. Filter the version number.

    java -version 2>&1 | head -n 1 | awk -F '"' '{print $2}'

link|improve this answer
3  
Less one process: `java -version 2>&1|awk -F\" '/version/ {print $2}' – holygeek Sep 29 '11 at 11:28
@holygeek: +1.nice. – Prince John Wesley Sep 29 '11 at 11:30
@holygeek & John: Thanks for your answers – Abhishek Simon Sep 29 '11 at 12:32
@holygeek: & John: the command fails in AIX machine saying awk: can't open {print$2}. What could be the problem? – Abhishek Simon Sep 29 '11 at 13:18
@Simon: this could be the quote escaping issue. – Prince John Wesley Sep 29 '11 at 16:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.