Skip to content

Instantly share code, notes, and snippets.

@howarddierking
Last active January 17, 2016 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save howarddierking/367907d08448cf108d61 to your computer and use it in GitHub Desktop.
Save howarddierking/367907d08448cf108d61 to your computer and use it in GitHub Desktop.
Dump Azure blob storage container using CLI
azure storage blob list -c "<Connection String>" --container "<Blob Container>" | \
awk '{print $2}' | head -n -1 | tail -n +5 | xargs -P <Desired Parallelism> -I {} \
azure storage blob download -c "<Connection String>" --container "<Blob Container>" -b {} -d .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment