6 lines
234 B
Bash
Executable file
6 lines
234 B
Bash
Executable file
#!/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
|