Hello Inkscape Community,
I am using inkscape on Ubuntu 12.04 at work, and I feel the need for more command-line functionalities. Here is my problem:
I want to execute verbs without graphical interface running (isn't it a waste of resources and time?), but apparently it is not possible...
My concrete example is this:
inkscape -z --verb EditSelectAll --verb ObjectFlowtextToText --verb FileSave myfile.svg
# or even, saving in another filename with -l (implies -z) would be cool:
inkscape --verb EditSelectAll --verb ObjectFlowtextToText -l myeditedfile.svg myfile.svg
It does not work (does not complain and create the file if needed, but no verb is executed). Instead, this works (with the gui):
inkscape --verb EditSelectAll --verb ObjectFlowtextToText --verb FileSave --verb FileQuit myfile.svg
This is not so bad, but why does Inkscape require to run the gui to perform verb actions? Is it the way verbs are built, or could it be avoided? Or at least, they should be a warning like "--verb are ignored when using -z" for users like me who thought it would be straightforward to automatise their workflow
Thanks a lot!