Last active
October 22, 2024 09:38
-
-
Save gipert/0b0b846378f56e3a83af946e896d44fd to your computer and use it in GitHub Desktop.
One liner download all Particle Data Group review PDF documents in parallel
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
| wget -q -O- https://pdg.lbl.gov/2024/reviews/contents_sports.html \ | |
| | sed -nr 's/.+href="(rpp.+-rev-.+\.pdf)".+/\1/p' \ | |
| | parallel wget -nv https://pdg.lbl.gov/2024/reviews/{} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment