Skip to content

Instantly share code, notes, and snippets.

@ranieuwe
Last active March 28, 2020 16:31
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ranieuwe/6bd4d3bcf52a49a55493362310b854da to your computer and use it in GitHub Desktop.
Save ranieuwe/6bd4d3bcf52a49a55493362310b854da to your computer and use it in GitHub Desktop.
Grabs a PDF copy of all Azure docs
for row in $(curl https://api.github.com/repositories/72685026/contents/articles | jq -c -r '.[] | select(.type | contains("dir")) | "\(.name)"'); do wget -O "${row}.pdf" "https://docs.microsoft.com/en-us/azure/opbuildpdf/${row}/toc.pdf?branch=live"; done
@ranieuwe
Copy link
Author

This will require jq to be installed. Tested on WSL with 16.04 Xenial.

@mashood73
Copy link

Hello, might be daft question but can't work out where it's downloading pdf's too? The script is running but cannot see where on my pc it's downloading the pdf's. Using Windows laptop with Ubuntu 16.04 (Xenial)?

@ranieuwe
Copy link
Author

ranieuwe commented Mar 2, 2020

It should normally go to the directory you are currently in, which by default is your homedir /mnt/c/Users/username or c:\Users\username when you are using WSL.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment