What is the Linux command to download the code through Subversion?
Generic directions are under the Subversion link on the inkscape sourceforge page. Note, however, that the command given on the sourceforge page will check out all modules of the Inkscape project and all branches of those modules. • To only check out the latest copy of the main branch (also called “trunk”) of the Inkscape program, do:svn checkout https://inkscape.svn.sourceforge.net/svnroot/inkscape/inkscape/trunk/ • To only check out the trunk of another Inkscape module, do: svn checkout https://svn.sourceforge.net/svnroot/inkscape/MODULE_NAME/trunk/ where MODULE_NAME is the name of the module you want to check out. Other modules you can check out include: experimental, our development “scratchpad” for working up prototypes; inkscape_web, which holds our website files; and inkscape_project, which holds config files and other project-level things. You can use our Subversion viewer to get the names of available modules. • To only check out a branch of some Inkscape module, do:svn checko