A Pen by Tim Arnold on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Enable fonts from texmf-local using updmap-sys --enable Map | |
# | |
# Manuel Pégourié-Gonnard, 2010; WTFPL v2. | |
find -H `kpsewhich --var-value TEXMFLOCAL` -name '*.map' | while read file | |
do | |
updmap-sys --nohash --nomkmap --enable Map `basename $file` | |
done |