File: buildfonts.sh

package info (click to toggle)
intlfonts 1.2.1-10.1
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 59,600 kB
  • sloc: sh: 367; makefile: 181
file content (10 lines) | stat: -rw-r--r-- 224 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

DIRS="Asian Chinese Chinese.BIG Ethiopic European European.BIG"
DIRS="$DIRS Japanese Japanese.BIG Misc"

for BDF in $(find $DIRS -name '*.bdf'); do
  PCF=${BDF%bdf}pcf
  bdftopcf -o $PCF $BDF
  gzip -9n $PCF
done