Skip to content

Instantly share code, notes, and snippets.

@vsimko
Created September 8, 2017 14:52
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 vsimko/249b300f5b088d5ae5a7860b2e764cb7 to your computer and use it in GitHub Desktop.
Save vsimko/249b300f5b088d5ae5a7860b2e764cb7 to your computer and use it in GitHub Desktop.
# show whole messages as formatted JSON
curl -s https://stream.wikimedia.org/v2/stream/recentchange | grep data | sed 's/^data: //g' | jq .
# show only title and comment
curl -s https://stream.wikimedia.org/v2/stream/recentchange | grep data | sed 's/^data: //g' | jq '{title:.title, comment:.comment}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment