Last active
March 3, 2022 21:52
-
-
Save sbassett29/e92baf8db8c67c42dc86d587f58360ef to your computer and use it in GitHub Desktop.
get mediawiki/services full list from gerrit api
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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