blob: 143f7dfc53820a9c4ae058fc6336c320cba24cce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#! /bin/sh
# Bourne shell script to clean up distro for CTAN
cd ~/doc/beginlatex/src
# Get rid of the PostScript, apparently people don't want it.
rm ../*.ps.gz
# Get rid of ancillary files
rm -f *.aux *.bbl *.blg *.dvi *.idx *.ilg *.ind *.log *.toc *.url *.loe *.lot
rm -f *.XML *.tmp
rm -f *.ppm *.pbm *.pnm *.pgm
rm -f *~
# Tar it up
cd ..
exit 0
|