Code

revert the PS rotation part of Adrian's patch for 437550, see discussion in the bug
[inkscape.git] / src / jabber_whiteboard / protocol / svg2eps.sh
1 #!/bin/bash
2 mkdir eps
3 for i in *.svg; do \
4         inkscape -E eps/`echo $i | sed -r 's/([a-zA-Z0-9\-]+)\.svg/\1/g;'`.eps $i; \
5 done