Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Find font file from font name on Linux

I have a font with the name Media Gothic. How can I find the file name of that font in Linux? I need to copy that file to another system. I've tried:
find /usr/share/fonts/ -name 'media'


But this gives no results. gothic gives some other fonts. TTF is a binary format so I can't use grep.
by

1 Answer

Kajalsi45d
Since this is Linux I'm surprised no-one mentioned the numfmt command:

numfmt - Convert numbers from/to human-readable strings
>>numfmt --to iec --format "%8.4f" 599511627776
558.3388G

Login / Signup to Answer the Question.