Skip to content

Instantly share code, notes, and snippets.

View jfrazee's full-sized avatar

Joey jfrazee

View GitHub Profile
#!/bin/bash
# List the blobs in an Azure storage container.
echo "usage: ${0##*/} <container-name> [blob-name]"
storage_account="$AZURE_STORAGE_ACCOUNT"
storage_suffix="${AZURE_STORAGE_SUFFIX:-core.windows.net}"
container_name="$1"
access_key="$AZURE_STORAGE_KEY"