Skip to content

Instantly share code, notes, and snippets.

@simonwhitaker
Created June 13, 2012 12:46
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 simonwhitaker/2923856 to your computer and use it in GitHub Desktop.
Save simonwhitaker/2923856 to your computer and use it in GitHub Desktop.
One-liner to see most contested new gTLDs as revealed by ICANN on 13th June 2012 (http://newgtlds.icann.org/en/program-status/application-results/strings-1200utc-13jun12-en)
curl -s http://newgtlds-cloudfront.icann.org/sites/default/files/reveal/strings-1200utc-13jun12-en.csv \
| tr '\015' '\012' | cut -d, -f1 | sort | uniq -c | sort -nr | head
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment