mirror of
https://github.com/nicoverbruggen/gnu-freefont.git
synced 2025-11-04 23:10:07 +01:00
7 lines
138 B
Bash
Executable File
7 lines
138 B
Bash
Executable File
#!/bin/sh
|
|
# Needs George Williams' showttf
|
|
for FILE in Free*.ttf
|
|
do
|
|
printf "%-23s" $FILE
|
|
showttf $FILE | grep -a UnicodeRange
|
|
done |