Blob Storage
General
List all storage accounts and output in a table format: az storage account list -o table List a...
Get storage keys
If you set the env var: az storage account keys list -n $AZURE_STORAGE_ACCOUNT You can assign o...
List storage containers
az storage container list --account-name $AZURE_STORAGE_ACCOUNT --account-key "$AZURE_STORAGE_KEY...
List storage container contents
az storage blob list --container-name <name of storage container from previous command> --account...
List blob names
az storage blob list --container-name <name of storage container from previous command> --account...