迭代已安装字体的以下OS X批处理脚本的等效批处理脚本是什么?

时间:2013-12-03 22:31:47

标签: windows macos batch-file cmd

我正在尝试使用here给出的答案。对于以下OS X批处理脚本迭代安装的字体,等效的批处理脚本是什么?

for F in /Library/Fonts/*.ttf
do
   FONT=`basename "$F" .ttf`
   xelatex "\def\myfont{$FONT}\input{handout.tex}"
   mv handout.pdf "$FONT".pdf
done

1 个答案:

答案 0 :(得分:2)

排除xelatex,这不是基本操作系统的一部分,脚本的其余部分可能是

for %%f in ("%systemroot%\Fonts\*.ttf") do (
    echo full path to file          : %%~ff
    echo name and extension of file : %%~nxf
    echo only name of file          : %%~nf

    rem xelatex "\def\myfont{%%~nf}\input{handout.tex}"
    rem move handout.pdf "%%~nf.pdf"
)