8 lines
233 B
Bash
Executable file
8 lines
233 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -x -e
|
|
API="https://api.netlify.com/api/v1"
|
|
TOKEN="$(pass netlify | grep -i token | tr -d ' ' | cut -d ':' -f 2)"
|
|
URL="$API/dns_zones/lyte_dev/dns_records?access_token=$TOKEN"
|
|
curl -sL "$URL" > /tmp/zone.json
|