Created
March 1, 2021 17:10
-
-
Save jswrenn/324a5b50221471d1b1bb3b31db1f98c2 to your computer and use it in GitHub Desktop.
This file contains 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
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