我想自动找到 Roboto 的所有文件和我的系统中安装了 Sawasdee 字体系列。鉴于它们位于 内的不同路径中/usr/share/fonts
。我该如何实现这一点?
答案1
有fc-list
这个,它列出了已安装的字体。在 14.04 上,你可以使用
fc-list | egrep -i "roboto|sawasdee"
但这似乎在 12.04 上不起作用,请改用
fc-list -v | grep file | egrep "roboto|sawasdee"
。
您也可以使用字体管理器,使用 安装它sudo apt-get install font-manager
。