mirror of
https://gitlab.com/fbb-git/cppannotations
synced 2024-11-16 07:48:44 +01:00
c56275fd59
git-svn-id: https://cppannotations.svn.sourceforge.net/svnroot/cppannotations/trunk@542 f6dd340e-d3f9-0310-b409-bdd246841980
11 lines
184 B
Bash
Executable file
11 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd svg
|
|
|
|
find ./ -type f -name '*.eps' -exec cp '{}' ../eps/'{}' ';' -delete
|
|
|
|
for x in `find ./ -type f -name '*.pdf'`
|
|
do
|
|
convert $x ../gif/${x%%pdf}gif
|
|
rm $x
|
|
done
|