webcrawl/apgte_md_to_tex.sh
2025-02-21 10:27:16 +01:00

7 lines
No EOL
146 B
Bash

for dir in */; do
cd $dir;
mkdir tex;
find md/ -name \*.md -type f -exec pandoc -f markdown -t latex -o {}.tex {} \;
mv md/*.tex tex/;
cd ..;
done