Skip to content

Instantly share code, notes, and snippets.

@ingorichter
Created June 3, 2018 19:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ingorichter/c619c447650b1097e99daab66a654ca5 to your computer and use it in GitHub Desktop.
Save ingorichter/c619c447650b1097e99daab66a654ca5 to your computer and use it in GitHub Desktop.
Extract business location JSON from impossiblefoods.js
curl https://www.impossiblefoods.com/scripts/main.js | tr '\n' '\a' | grep -o "e.exports=\[{geometry:.*\"}}]},{}\]," | sed "s/e.exports=//" | sed "s/},{}],//" | sed "s/\([a-zA-Z]*\):/\"\1\":/g" | sed "s/\"\"https\"/\"https/g" | sed "s/\"ext\":/ext:/" | sed "s/\"coordinates\":\[,\]/\"coordinates\":\[0,0\]/g" | tr -d '\a' > result.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment