如何自动安装整个Google Web Fonts集合?

我基本上是在寻找一种无人值守的方式将Google Web Fonts集合部署/安装到几个Ubuntu盒子中。 我搜索了PPA,包或用户脚本,但没有太多运气。

任何建议将不胜感激。 非常感谢提前!

这篇文章中现有的答案是过时的,不起作用(具体来说,远程hg存储库不再存在)。

有关新说明,请访问: https : //github.com/google/fonts

综上所述:

wget https://github.com/google/fonts/archive/master.zip unzip master.zip 

然后,如前所述:

 sudo mkdir -p /usr/share/fonts/truetype/google-fonts/ find ./fonts-master/ -name "*.ttf" -exec sudo install -m644 {} /usr/share/fonts/truetype/google-fonts/ \; || return 1 fc-cache -f > /dev/null 

你试过这个: http : //www.webupd8.org/2011/01/automatically-install-all-google-web.html