Created
June 13, 2012 12:46
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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