Skip to content

Instantly share code, notes, and snippets.

@max-lt
Created December 17, 2017 13:57
Show Gist options
  • Save max-lt/d4915a2f750b292189bfc81c366856ca to your computer and use it in GitHub Desktop.
Save max-lt/d4915a2f750b292189bfc81c366856ca to your computer and use it in GitHub Desktop.
Get package.json version shell script
#!/bin/sh
VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[", ]//g')
echo "Version is >${VERSION}<"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment