
In order for Inkscape to make use of an external script or program, you must describe that script to Inkscape using an INX file.


After processing, the script should return the modified SVG file to Inkscape on STDOUT. The final argument is the name of the temporary SVG file your script should read. Inkscape runs your script (optionally with an interpreter, more info here: Extension Interpreters), passing it any number of parameters in long GNU style. (interpreter)? your_script (-param=value)* /path/to/input] | inkscape It is important for a script author to understand how Inkscape and scripts communicate. While all of these are very similar in the scripting interface, there are slight differences between them.

Such programs read a stream of data on standard input, transform the data in some way, and then write the modified data to standard output. Traditional Unix scripts can be used to extend Inkscape's functionality.
