Fix pdftoipe
[Misc/ipe.git] / tools / pdftoipe.sh
1 # !/bin/bash
2 echo $1
3
4 TMPFILE=`mktemp`
5 TMPFILE="${TMPFILE}.svg"
6
7 inkscape --verb=EditSelectAll --verb=ObjectToPath --export-plain-svg=$TMPFILE $1
8 ./svgtoipe.py $TMPFILE $2
9 #rm $TMPFILE
10