找出一种语言中最常见的结尾

找出一种语言中最常见的结尾

我想弄清楚最有用的顶级域名是什么域名黑客 (即,通过与 TLD 组合来创建拼写单词的短 FQDN,例如ho.me)用英语。

以下是公共后缀列表https://publicsuffix.org/list/public_suffix_list.dat,我想对照英语单词来检查哪些单词最受欢迎。

我怎样才能实现这一点,例如使用脚本?

答案1

此 bash 脚本使用来自https://publicsuffix.org/list/public_suffix_list.dat

for TLD in $(grep -E '^[a-z]+$' public_suffix_list.dat); do echo $(grep $TLD /usr/share/dict/words | wc -l) $TLD; done | grep -v ^0 | sort -nr

前十名是:

16147 in
13129 es
9573 ng
9276 re
9174 at
8625 st
8331 ing
7383 ar
6762 li
6469 al

https://gist.github.com/michaelmcandrew/a7de275eb57053206a17c6e9316ea86a以获取完整列表。

相关内容