This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
software:inkscape_scripts [2016/05/08 01:27] – admin | software:inkscape_scripts [2016/05/11 21:47] (current) – admin | ||
---|---|---|---|
Line 66: | Line 66: | ||
svg=" | svg=" | ||
- | # Strip everything until after the first appearance of '< | + | # Strip everything until after the first appearance of '< |
+ | # grep $svg first to prevent the subsequent substring removal to freeze | ||
+ | # in case of embedded images in svg files. | ||
+ | svg=$(echo $svg | grep -oP '< | ||
svg=" | svg=" | ||
| | ||
Line 89: | Line 92: | ||
# check if $svg still contains '< | # check if $svg still contains '< | ||
if [[ $svg == *"< | if [[ $svg == *"< | ||
+ | # Strip everything until after the first appearance of '< | ||
+ | # grep $svg first to prevent the subsequent substring removal to freeze | ||
+ | # in case of embedded images in svg files. | ||
+ | svg=$(echo $svg | grep -oP '< | ||
svg=" | svg=" | ||
else | else | ||
Line 105: | Line 112: | ||
FILES=" | FILES=" | ||
done | done | ||
- | echo "Merging | + | echo -n "Creating ${INPD}${OUTF}, |
/usr/bin/gs -dBATCH -sPAPERSIZE=a4 -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=${INPD}${OUTF} $FILES | /usr/bin/gs -dBATCH -sPAPERSIZE=a4 -dNOPAUSE -q -sDEVICE=pdfwrite -sOutputFile=${INPD}${OUTF} $FILES | ||
rm $FILES | rm $FILES | ||
+ | echo " done." | ||
else | else | ||
echo -e " | echo -e " | ||
fi | fi | ||
</ | </ |