Last active
January 17, 2016 10:28
-
-
Save howarddierking/367907d08448cf108d61 to your computer and use it in GitHub Desktop.
Dump Azure blob storage container using CLI
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
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