Skip to content

Instantly share code, notes, and snippets.

@rafaelcorsi
Created March 6, 2015 21:58
Show Gist options
  • Save rafaelcorsi/f475bf658ad6dc8958e3 to your computer and use it in GitHub Desktop.
Save rafaelcorsi/f475bf658ad6dc8958e3 to your computer and use it in GitHub Desktop.
Export the drawn from a pdf using inkscape and command line
#!/bin/bash
# License under GLP 2
# uses inkscape to export only the drawn from a PDF
FILE1=$1
inkscape \
--without-gui \
--file=$1 \
-D --export-pdf=$1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment