Skip to content

Instantly share code, notes, and snippets.

@whiteley
Created July 8, 2014 21:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whiteley/05ccbb2ea94a5ec3de36 to your computer and use it in GitHub Desktop.
Save whiteley/05ccbb2ea94a5ec3de36 to your computer and use it in GitHub Desktop.
#!/bin/bash
set -o errexit
set -o nounset
for v in "$@"; do
k=$(dig -t CNAME +short "${v}.blob.core.windows.net")
k=${k##blob.}
k=${k%%.store.core.windows.net.}
echo "\"${k}\":\"${v}\""
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment