Skip to content

Instantly share code, notes, and snippets.

View angeloc's full-sized avatar
😀

Angelo Compagnucci angeloc

😀
View GitHub Profile
@angeloc
angeloc / get_blob.sh
Last active March 29, 2021 11:17
Download Azure blob from bash
#!/bin/sh
usage() {
echo "usage: ${0##*/} <azure storage key> <azure storage account> <container-name> <blob-name>"
}
if [ -z "$1" ] || [ -z "$2" ] || [ -z "$3" ] || [ -z "$4" ]; then
usage
exit 1
fi