This repository has been archived on 2023-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2021-01-26 00:22:49 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2022-02-15 11:17:11 +01:00
|
|
|
FEXT=("pdf" "tex" "aux" "log" "toc" "out" "html" "lol" "lot" "epub" "bbl" "glo" "ist")
|
2021-01-26 00:22:49 +01:00
|
|
|
DIRS=("auto" "_minted*" "svg-inkscape")
|
|
|
|
|
|
2022-02-15 11:17:11 +01:00
|
|
|
for e in "${FEXT[@]}"; do
|
2021-02-01 22:28:07 +01:00
|
|
|
fd -uu -e "$e" -X rm {}
|
2021-01-26 00:22:49 +01:00
|
|
|
done
|
|
|
|
|
|
2022-02-15 11:17:11 +01:00
|
|
|
for d in "${DIRS[@]}"; do
|
2021-02-01 22:28:07 +01:00
|
|
|
fd -uu -t d "$d" -X rm -r {}
|
2021-01-26 00:22:49 +01:00
|
|
|
done
|