mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-25 20:58:37 -06:00
7 lines
259 B
Text
Executable file
7 lines
259 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
|
|
|
|
[ 0 -lt $(ls *.tex 2>/dev/null | wc -w) ] && find . -maxdepth 1 -type f -regex ".*\.\(aux\|log\|synctex.gz\|bbl\|blg\)" -exec totrash {} \;
|
|
echo "Done!"
|
|
|