You can obtain a list of the fonts on a Mac OS X system using the system_profiler command
system_profiler SPFontsDataTye
. A large amount of
information will be displayed for each font, so you may want to capture the
output in a file, e.g. fontslist.txt.
$ system_profiler SPFontsDataType > fontslist.txt
If you want the output in XML format,
you can include the -xml
option, e.g. system_profiler
-xml SPFontsDataType > fontslist.xml
.
[ More Info ]