You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kile/src/kile/symbols/compile-all.sh

13 lines
312 B

#!/bin/bash
# internal script for generating all symbols on one shot
# License: GPLv2 or later
# Author: Thomas Braun
#
names="relation arrows delimiters greek misc-math misc-text operators special cyrillic"
for i in $names
do
rm -f ./$i/*.png
./gesymb $i $i.tex && mv -f img*$i*png $i # && make install
done