7 lines
234 B
Bash
7 lines
234 B
Bash
|
#!/usr/bin/env bash
|
||
|
# This script will download the list of domain registrars from iana.org
|
||
|
#
|
||
|
wget -O registrar-ids.xml https://www.iana.org/assignments/registrar-ids/registrar-ids.xml
|
||
|
|
||
|
cat registrar-ids.xml | xq > registrar_ids.json
|