diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..47560db --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +**.pdf +**.png +**.swp diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..727cba1 --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +#!/bin/bash +all: + find . -type f -name '*.svg' -print0 | xargs -0 -n 1 -P 6 inkscape --actions="export-filename:$1.png; export-do;" --export-dpi 96 $1 + find . -type f -name '*.svg' -print0 | xargs -0 -n 1 -P 6 inkscape --actions="export-filename:$1.pdf; export-do;" --export-dpi 600 $1