Skip to content

Instantly share code, notes, and snippets.

@jswrenn
Created March 1, 2021 17:10
Show Gist options
  • Save jswrenn/324a5b50221471d1b1bb3b31db1f98c2 to your computer and use it in GitHub Desktop.
Save jswrenn/324a5b50221471d1b1bb3b31db1f98c2 to your computer and use it in GitHub Desktop.
curl -s 'https://api.github.com/repos/rust-itertools/itertools/pulls?state=open' \
| jq -r '.[] | .number' \
| pv -q -L4 \
| xargs -I{} curl -s 'https://api.github.com/repos/rust-itertools/itertools/pulls/{}/files' \
| jq -r '.[] | .filename' \
| sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment