| #!/usr/bin/env sh | |
| # author: Gary A. Stafford | |
| # site: https://programmaticponderings.com | |
| # license: MIT License | |
| set -ex | |
| ## CONSTANTS ## | |
| ACCOUNT_NAME="<value_goes_here>" | |
| STORAGE_ACCOUNT="<value_goes_here>" | |
| STORAGE_CONTAINER="<value_goes_here>" | |
| az storage blob upload-batch \ | |
| --account-name ${STORAGE_ACCOUNT} \ | |
| --account-key ${ACCOUNT_KEY} \ | |
| --destination ${STORAGE_CONTAINER} \ | |
| --source ../azure-tech-facts-google/pics/ \ | |
| --pattern image-*.png | |
| # --dryrun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment