Skip to content

Instantly share code, notes, and snippets.

View juliusl's full-sized avatar

Julius Liu juliusl

  • Microsoft
  • Redmond
View GitHub Profile
@juliusl
juliusl / curl-push-azure-storage-blob.sh
Created December 6, 2023 22:43 — forked from gregjhogan/curl-push-azure-storage-blob.sh
Push a file to a blob in an Azure storage account
curl -X PUT -T ./{file.dat} -H "x-ms-date: $(date -u)" -H "x-ms-blob-type: BlockBlob" "https://{storageaccount}.blob.core.windows.net/backups/{file.dat}?{sas-token}"