beremiz
Clone
Summary
Browse
Changes
Graph
cleanup etherlab: pep8, E305 expected 2 blank lines after class or function definition, found X
2018-09-28, Andrey Skvortsov
e40f3914e55f
file is
Executable
cleanup etherlab: pep8, E305 expected 2 blank lines after class or function definition, found X
#!/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