13 lines
273 B
Bash
Executable File
13 lines
273 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FEXT=("pdf" "tex" "aux" "log" "toc" "out" "html" "lol" "lot" "epub" "bbl" "glo" "ist")
|
|
DIRS=("auto" "_minted*" "svg-inkscape")
|
|
|
|
for e in "${FEXT[@]}"; do
|
|
fd -uu -e "$e" -X rm {}
|
|
done
|
|
|
|
for d in "${DIRS[@]}"; do
|
|
fd -uu -t d "$d" -X rm -r {}
|
|
done
|