www.franconian.net/static/logoGen/genAll.sh

17 lines
465 B
Bash
Raw Normal View History

2020-12-13 12:20:01 +01:00
bash clean.sh
2020-12-13 11:54:17 +01:00
for f in *.svg; do python3 generate.py $f colortables.json; done
2020-12-13 12:20:01 +01:00
#index
rm index.html
echo "<html><head>" > index.html
echo "<style type=text/css>" >> index.html
echo "body{background:#100e23;display:flex;flex-flow: row wrap;}img{margin:10px;}" >> index.html
echo "</style>" >> index.html
echo "</head><body>" >> index.html
for f in gen_*; do echo "<img alt="$f" width=100 src=$f></img>" >> index.html; done
echo "</body></html>" >> index.html