Skip to content

Instantly share code, notes, and snippets.

@sbassett29
Last active March 3, 2022 21:52
Show Gist options
  • Save sbassett29/e92baf8db8c67c42dc86d587f58360ef to your computer and use it in GitHub Desktop.
Save sbassett29/e92baf8db8c67c42dc86d587f58360ef to your computer and use it in GitHub Desktop.
get mediawiki/services full list from gerrit api
#!/usr/bin/env bash
curl -s https://gerrit.wikimedia.org/r/projects/?r=mediawiki/services/.* | \
awk 'NR>1' | \
jq -r 'to_entries[] | "\(.key) [ \(.value.web_links[0].url) ]"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment