#!/usr/bin/fontforge ################################################################################# # # # font-convert.pe support script to convert Type1 fonts to .OTF format # # # # relies on: # # - fontforge project: # # https://fontforge.github.io/en-US/ # # # # - font-convert (check site) # # https://fontforge.github.io/scripting-tutorial.html # # # # by TCMcG 2019-01-20 # # # # place in ~/bin/ # # # ################################################################################# Open($1); Reencode("unicode"); Generate( $1:r + $2 ); Quit(0);