I need to be able to read the contents of a file (say MANIFEST) within a jar file. Currently I do this by extracting the contents of the file and then listing it
${JAVA_HOME}/bin/jar xvf SOME_WAR_FILE.war META-INF/MANIFEST.MF
cat META-INF/MANIFEST.MF
Is it possible to do this using a one liner, without extracting the contents ?