etherlab/images/genicons.sh
author Edouard Tisserant <edouard.tisserant@gmail.com>
Tue, 06 Sep 2022 21:06:36 +0200
branchwxPython4
changeset 3589 a0b645a934c9
parent 2043 27d4cb689a79
permissions -rw-r--r--
OPC-UA, IDE: add CTN parameters to support OPC-UA encryption and authentication.

xmlclass had to be enhanced to support elements with no content in xsd:choice
#!/bin/bash

INKSCAPE=inkscape

for i in `cat icons.svg |grep -o -e '%%[^%]*%%'|sed 's/%//g'` 
do
 if [ $i.png -nt icons.svg ]; then
 	echo "Skip $i"
 else
	rm  -f $i.png
	echo "$INKSCAPE" icons.svg -z -e $i.png -i $i
	"$INKSCAPE" icons.svg -z -e $i.png -i $i
 fi
done