ttf2eot

Convert TrueType Font (TTF) files to Embedded OpenType (EOT) format

brewmacoslinux
Try with needOr install directly
Source

About

Convert TTF files to EOT

Commands

ttf2eot

Examples

Convert a single TTF file to EOT format$ ttf2eot input.ttf output.eot
Convert multiple TTF files in a directory$ for file in *.ttf; do ttf2eot "$file" "${file%.ttf}.eot"; done
Convert TTF and redirect output to a file$ ttf2eot myfont.ttf > myfont.eot