Created
March 6, 2015 21:58
-
-
Save rafaelcorsi/f475bf658ad6dc8958e3 to your computer and use it in GitHub Desktop.
Export the drawn from a pdf using inkscape and command line
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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