Azure Storage Basics
A quick guide to essential Azure Storage CLI commands for blobs.
az loginYou need a resource group first.
az storage account create --name yourstorageaccount --resource-group your-resource-group --location eastus --sku Standard_LRSaz storage container create --account-name yourstorageaccount --name yourcontaineraz storage container list --account-name yourstorageaccountaz storage blob upload --account-name yourstorageaccount --container-name yourcontainer --name my-blob.txt --file local-file.txtaz storage blob list --account-name yourstorageaccount --container-name yourcontainer --output tableaz storage blob download --account-name yourstorageaccount --container-name yourcontainer --name my-blob.txt --file downloaded.txtaz storage blob delete --account-name yourstorageaccount --container-name yourcontainer --name my-blob.txt