-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcleanlatex.sh
53 lines (46 loc) · 975 Bytes
/
cleanlatex.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
EXT_LIST="aux bcf log"
TEST=
while [ -n "$1" ]; do # loop over all arguments
# Check which arg was passed
case "$1" in
-h|--help)
echo "Usage: $(basename "$0") [-p|--pdf -t|--test] BASENAME"
exit 0
;;
-p|--pdf)
EXT_LIST="$EXT_LIST pdf"
shift
;;
-t|--test)
TEST=1
shift
;;
-*)
echo "Option $1 not recognized"
exit 1
;;
*)
if [ -n "$BASENAME" ]; then
echo "expected 1 basename, got more"
exit 1
else
BASENAME="$1"
fi
shift
;;
esac
done
if [ -z "$BASENAME" ]; then
echo "expected 1 basename, got none"
exit 1
fi
cmd() {
if [ -z $TEST ];then
$*
else
echo "$*"
fi
}
for ext in $EXT_LIST; do
cmd rm "${BASENAME}.${ext}" -f
done