1
0
Fork 0
mirror of https://github.com/SinTan1729/random.git synced 2024-12-25 20:58:37 -06:00
random/latex-cleanup
2021-12-28 02:54:26 -06:00

15 lines
385 B
Text

# I use it to clean up latex build files from a directory after I'm done with the project.
#!/bin/sh
for f in *.tex; do
h=$(basename "$f" .tex)
echo "Trashing files accompanying $h.tex..."
for g in "$h".*; do
if [[ ${g: -4} != ".tex" && ${g: -4} != ".pdf" ]] ; then
echo "Trashing $g..."
totrash "$g"
fi
done
done
echo "Done!"