random/latex-cleanup
2021-06-29 22:50:52 +05:30

15 lines
387 B
Text
Executable file

# I use it to clean up latex build files from a directory after I'm done with the project.
#!/bin/bash
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!"