Skip to content

Instantly share code, notes, and snippets.

@mkjsix
Last active October 16, 2019 11:46
Show Gist options
  • Save mkjsix/81d0d92f773e2a048149bb97d3103aa4 to your computer and use it in GitHub Desktop.
Save mkjsix/81d0d92f773e2a048149bb97d3103aa4 to your computer and use it in GitHub Desktop.
Extract the POM version from JAR file
#!/bin/bash
VERSION=$(unzip -q -c "$1" META-INF/MANIFEST.MF | grep "Implementation-Version:" | awk '{print $2}' | sed 's/["\n\r]//g')
printf "%s" "$VERSION"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment