Hey guys, so I've ought domains before - couple of times. New project, need some domains to fill the space (reasonably). Last purchase was on BigRock but I tend to forget so.. this time round I latched on to Mitsu and almost paid, but then I read about the court case etc so I decided to wait a bit. In the meantime I found Dynadot thanks to the threads by others on Mitsu.
Anyhow here's my script thingy - one liner to correlate ICANN registrars with registry.in
lynx -dump https://www.icann.org/registrar-reports/accreditation-qualified-list.html>/tmp/ic
lynx -dump https://www.registry.in/accredited-registrars>/tmp/in
cat ic|grep http|sed -nr 's/\[.*\]//pg'|sed -nr 's/ //gp'|sed -nr 's/http*:\/\///pg'|sort|uniq|xargs -I{} grep {} in>list
Just grab all the http urls and nuke the http*:// from ICANN and then search in registry.in - I'd post the list but preview does something awful
Anyhow here's my script thingy - one liner to correlate ICANN registrars with registry.in
lynx -dump https://www.icann.org/registrar-reports/accreditation-qualified-list.html>/tmp/ic
lynx -dump https://www.registry.in/accredited-registrars>/tmp/in
cat ic|grep http|sed -nr 's/\[.*\]//pg'|sed -nr 's/ //gp'|sed -nr 's/http*:\/\///pg'|sort|uniq|xargs -I{} grep {} in>list
Just grab all the http urls and nuke the http*:// from ICANN and then search in registry.in - I'd post the list but preview does something awful