diff options
Diffstat (limited to 'Master/texmf-dist/doc/latex/confproc/cleancls')
-rw-r--r-- | Master/texmf-dist/doc/latex/confproc/cleancls | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/confproc/cleancls b/Master/texmf-dist/doc/latex/confproc/cleancls new file mode 100644 index 00000000000..d828e60d5e1 --- /dev/null +++ b/Master/texmf-dist/doc/latex/confproc/cleancls @@ -0,0 +1,12 @@ +#!/bin/sh +mkdir backup #--- move the files to be kept +mv confproc.dtx backup/ +mv buildcls backup/ +cp cleancls backup/ +mv pd1enc.def backup/ +rm *.* #--- clean up! +mv backup/confproc.dtx . #--- move the backed up files +mv backup/buildcls . +mv backup/cleancls . +mv backup/pd1enc.def . +rm -r backup #--- remove the temporary backup folder |