stu*_*ent 3 bash latex
如果我pdflatex *.tex在一个目录中做,只会tex编译一个文件。我应该使用哪种语法*.tex来编译目录中的所有文件?
pdflatex *.tex
tex
*.tex
Woj*_*tek 7
尝试
for file in *.tex; do pdflatex "$file"; done
Ber*_*ard 6
pdflatex显然只需要一个参数。我可以想到使用find -exec
pdflatex
find -exec
find -name '*.tex' -maxdepth 1 -exec pdflatex {} \;
但可能有更好的选择。
归档时间:
14 年 前
查看次数:
1279 次
最近记录:
9 年,12 月 前