is possible run multi inscape commands in one line?
I need grab some images from svg and this variant is to slow:
Code: Select all
exec(inkscape file.svg --export-id=g123 --export-png=img1.png);
exec(inkscape file.svg --export-id=g124 --export-png=img2.png);
exec(inkscape file.svg --export-id=g125 --export-png=img3.png);
exec() - is vero slow.
So i need do everything in one line.
I try this:
exec(inkscape file.svg --export-id=g125 --export-png=img3.png inkscape file.svg --export-id=g123 --export-png=img1.png);
But extract only last image.