Skip to content

Instantly share code, notes, and snippets.

@dwelch2344
Created January 25, 2016 17:45
Show Gist options
  • Save dwelch2344/f96d4d999e097a3d8549 to your computer and use it in GitHub Desktop.
Save dwelch2344/f96d4d999e097a3d8549 to your computer and use it in GitHub Desktop.
Simple find and replace for versioning
{
"manifest_version": 2,
"name": "My App",
"version": "0.1",
"someProp": "foo_bar_baz"
}
cat manifest.json | sed 's/\("version": "\)[^"]*\("\)/\1newvalue\2/g'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment