Skip to content

Instantly share code, notes, and snippets.

@gipert
Created November 11, 2023 19:12
Show Gist options
  • Save gipert/0b0b846378f56e3a83af946e896d44fd to your computer and use it in GitHub Desktop.
Save gipert/0b0b846378f56e3a83af946e896d44fd to your computer and use it in GitHub Desktop.
One liner download all Particle Data Group review PDF documents in parallel
wget -q -O- https://pdg.lbl.gov/2023/reviews/contents_sports.html \
| sed -nr 's/.+href="(rpp.+-rev-.+\.pdf)".+/\1/p' \
| parallel wget -nv https://pdg.lbl.gov/2023/reviews/{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment