mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
0c09279893
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@101 f6dd340e-d3f9-0310-b409-bdd246841980
23 lines
303 B
Bash
Executable file
23 lines
303 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd ../yo
|
|
|
|
GIFS=`find ./ -name '*.gif'`
|
|
|
|
if [ "$GIFS" == "" ] ; then
|
|
echo no gifs
|
|
else
|
|
tar cf - $GIFS | (cd ../html; tar xvf -)
|
|
rm $GIFS
|
|
fi
|
|
|
|
|
|
PS=`find ./ -name '*.eps'`
|
|
|
|
if [ "$PS" == "" ] ; then
|
|
echo no ps files
|
|
else
|
|
tar cf - $PS | (cd ../latex; tar xvf -)
|
|
rm $PS
|
|
fi
|
|
|