diff --git a/utils/cheatsheet/export-cheatsheet-in-pdf.sh b/utils/cheatsheet/export-cheatsheet-in-pdf.sh new file mode 100755 index 00000000..25f0c687 --- /dev/null +++ b/utils/cheatsheet/export-cheatsheet-in-pdf.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +cd ../../src/cheatsheet + +for III in *.svg +do + CHEATNAME=`basename $III .svg` + inkscape --without-gui --file=${CHEATNAME}.svg --export-pdf=$CHEATNAME.pdf +done \ No newline at end of file